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

11 lines
356 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()