10 lines
131 B
Go
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)
|
|
)
|