11 lines
359 B
GDScript
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()
|