rove/pkg/game/tile.go

11 lines
123 B
Go
Raw Normal View History

2020-06-07 18:38:46 +01:00
package game
// Tile represents the type of a tile on the map
type Tile byte
const (
TileEmpty = '_'
TileRock = 'o'
)