aboutsummaryrefslogtreecommitdiff
path: root/internal/object/object.go
blob: 2810e070b8e313e83b3b2ca2cbe0cd8b1d5c3e76 (plain)
1
2
3
4
5
6
7
8
9
10
11
package object

type ObjectDef struct {
	ID                string         `yaml:"id"`
	Name              string         `yaml:"name"`
	BehaviorID        string         `yaml:"behavior"`
	Hidden            bool           `yaml:"hidden"`
	InRoomDescription string         `yaml:"inroom_description"`
	RemovalItem       string         `yaml:"removal_item"`
	Props             map[string]any `yaml:"props"`
}