rove/pkg/atlas/tile.go
Marc Di Luzio 7ababb79f6 Migrate to gRPC rather than REST with swagger
Will also be adding in a RESTful endpoint to the server as well so it can consume both types
2020-06-12 22:51:18 +01:00

9 lines
108 B
Go

package atlas
const (
TileEmpty = byte(0)
TileRover = byte(1)
TileWall = byte(2)
TileRock = byte(3)
)