Add geom file to describe world positions

This commit is contained in:
Marc Di Luzio 2020-06-02 18:00:27 +01:00
parent 3620185897
commit 0a1f7a37c4

6
pkg/game/geom.go Normal file
View file

@ -0,0 +1,6 @@
package game
type Position struct {
X int `json:"x"`
Y int `json:"y"`
}