Rename Kind -> Tile

This commit is contained in:
Marc Di Luzio 2020-06-07 18:38:46 +01:00
parent 289bab2a7a
commit cb725c96d2
3 changed files with 22 additions and 15 deletions

10
pkg/game/tile.go Normal file
View file

@ -0,0 +1,10 @@
package game
// Tile represents the type of a tile on the map
type Tile byte
const (
TileEmpty = '_'
TileRock = 'o'
)