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