aboutsummaryrefslogtreecommitdiff
path: root/internal/object/object.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-10 04:44:31 -0400
committerhistoria <[not public]>2026-06-10 04:44:31 -0400
commit69d8757ad983697cdc9182fdcc1cdb612a77fb41 (patch)
tree348c26d1f6defe3aef64f5aa9e7cefed0e764214 /internal/object/object.go
parenta226d72e51eecb768b13600303f73483118d9104 (diff)
downloadthehouseoficarus-69d8757ad983697cdc9182fdcc1cdb612a77fb41.tar.gz
feat: yaml architecture for complex object interaction
Diffstat (limited to 'internal/object/object.go')
-rw-r--r--internal/object/object.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/object/object.go b/internal/object/object.go
index edee3ab..9e06804 100644
--- a/internal/object/object.go
+++ b/internal/object/object.go
@@ -4,5 +4,6 @@ type ObjectDef struct {
ID string `yaml:"id"`
Name string `yaml:"name"`
BehaviorID string `yaml:"behavior"`
+ Hidden bool `yaml:"hidden"`
Props map[string]any `yaml:"props"`
}