package muddy type ID struct { ID int64 } type Location struct { X, Y, Z int64 World int64 Exits []int64 } type Observable struct { Name string Description string } type Inventory struct { Items []int64 } type HP struct { Max, Current, Regen int64 } type Mana struct { Max, Current, Regen int64 }