1
0
forked from MTSR/mapserver
mapserver/coords/mapblockcoords.go

10 lines
152 B
Go
Raw Normal View History

2019-01-09 12:52:51 +03:00
package coords
type MapBlockCoords struct {
X,Y,Z int
}
func NewMapBlockCoords(x,y,z int) MapBlockCoords {
return MapBlockCoords{X:x, Y:y, Z:z}
}