immersive-home/app/lib/globals/main_store.gd
2024-03-17 17:05:45 +01:00

11 lines
359 B
GDScript

extends Node
## Collection of all the stores to save the state persistently
const SettingsStore = preload ("res://lib/stores/settings.gd")
const HouseStore = preload ("res://lib/stores/house.gd")
const DevicesStore = preload ("res://lib/stores/devices.gd")
var settings := SettingsStore.new()
var house := HouseStore.new()
var devices := DevicesStore.new()