package game

// Tile represents the type of a tile on the map
type Tile byte

const (
	TileEmpty = Tile(0)

	TileWall = Tile(1)

	TileRover = Tile(2)
)