rove/pkg/game/tile.go
Marc Di Luzio 3781a4d10d Spawn a border around the world atlas for now
Also spawn the rover within a single chunk in the middle
2020-06-07 18:57:44 +01:00

10 lines
131 B
Go

package game
// Tile represents the type of a tile on the map
type Tile byte
const (
TileEmpty = Tile(0)
TileWall = Tile(1)
)