Will also be adding in a RESTful endpoint to the server as well so it can consume both types
9 lines
108 B
Go
9 lines
108 B
Go
package atlas
|
|
|
|
const (
|
|
TileEmpty = byte(0)
|
|
TileRover = byte(1)
|
|
|
|
TileWall = byte(2)
|
|
TileRock = byte(3)
|
|
)
|