mapserver/coords/mapblockcoords.go
2019-01-09 10:52:51 +01:00

10 lines
152 B
Go

package coords
type MapBlockCoords struct {
X,Y,Z int
}
func NewMapBlockCoords(x,y,z int) MapBlockCoords {
return MapBlockCoords{X:x, Y:y, Z:z}
}