package game // Tile represents the type of a tile on the map type Tile byte const ( TileEmpty = '_' TileRock = 'o' )