coordinate.go 77 B

123456
  1. package board
  2. type Coordinate struct {
  3. X int `json:"x"`
  4. Y int `json:"y"`
  5. }