2020-06-11 20:42:59 +01:00
|
|
|
package atlas
|
2020-06-07 18:38:46 +01:00
|
|
|
|
|
|
|
// Tile represents the type of a tile on the map
|
|
|
|
type Tile byte
|
|
|
|
|
|
|
|
const (
|
2020-06-07 18:57:44 +01:00
|
|
|
TileEmpty = Tile(0)
|
2020-06-07 22:36:11 +01:00
|
|
|
TileRover = Tile(1)
|
2020-06-07 18:38:46 +01:00
|
|
|
|
2020-06-07 22:36:11 +01:00
|
|
|
TileWall = Tile(2)
|
|
|
|
TileRock = Tile(3)
|
2020-06-07 18:38:46 +01:00
|
|
|
)
|