Rename Kind -> Tile
This commit is contained in:
parent
289bab2a7a
commit
cb725c96d2
3 changed files with 22 additions and 15 deletions
10
pkg/game/tile.go
Normal file
10
pkg/game/tile.go
Normal file
|
@ -0,0 +1,10 @@
|
|||
package game
|
||||
|
||||
// Tile represents the type of a tile on the map
|
||||
type Tile byte
|
||||
|
||||
const (
|
||||
TileEmpty = '_'
|
||||
|
||||
TileRock = 'o'
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue