7 lines
75 B
Go
7 lines
75 B
Go
|
package game
|
||
|
|
||
|
type Position struct {
|
||
|
X int `json:"x"`
|
||
|
Y int `json:"y"`
|
||
|
}
|