Spawn a border around the world atlas for now

Also spawn the rover within a single chunk in the middle
This commit is contained in:
Marc Di Luzio 2020-06-07 18:57:44 +01:00
parent cb725c96d2
commit 3781a4d10d
5 changed files with 59 additions and 5 deletions

View file

@ -4,7 +4,7 @@ package game
type Tile byte
const (
TileEmpty = '_'
TileEmpty = Tile(0)
TileRock = 'o'
TileWall = Tile(1)
)