6 lines
103 B
Go
6 lines
103 B
Go
package game
|
|
|
|
// Item describes an item that can be held
|
|
type Item struct {
|
|
Type byte `json:"type"`
|
|
}
|