You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
muddy/components.go

29 lines
323 B
Go

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