7 lines
90 B
Go
7 lines
90 B
Go
package gamedata
|
|
|
|
type Coordinates struct {
|
|
X float64 `json:"X"`
|
|
Y float64 `json:"Y"`
|
|
}
|