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.
|
package muddy
|
|
|
|
type ID struct {
|
|
ID int64
|
|
}
|
|
|
|
type Location struct {
|
|
World int64
|
|
Exits []int64
|
|
}
|
|
|
|
type Observable struct {
|
|
Name string
|
|
Description string
|
|
}
|