rove/pkg/game/items.go

15 lines
215 B
Go
Raw Normal View History

2020-06-26 18:13:23 +01:00
package game
// Each item is a specific type
const (
ItemNone = byte(0)
// Describes a single rock
ItemRock = byte(1)
)
// Item describes an item that can be held
type Item struct {
Type byte `json:"type"`
}