10 lines
123 B
Go
10 lines
123 B
Go
package game
|
|
|
|
// Tile represents the type of a tile on the map
|
|
type Tile byte
|
|
|
|
const (
|
|
TileEmpty = '_'
|
|
|
|
TileRock = 'o'
|
|
)
|