Pepper the world with rocks

This commit is contained in:
Marc Di Luzio 2020-06-07 22:36:11 +01:00
parent 43648926ca
commit e82fb3dbfe
4 changed files with 21 additions and 8 deletions

View file

@ -5,8 +5,8 @@ type Tile byte
const (
TileEmpty = Tile(0)
TileRover = Tile(1)
TileWall = Tile(1)
TileRover = Tile(2)
TileWall = Tile(2)
TileRock = Tile(3)
)