[golang] implement shipyards visits
This commit is contained in:
parent
3cae67aea4
commit
bd2fb50c81
15 changed files with 299 additions and 45 deletions
|
@ -14,3 +14,11 @@ type Waypoint struct {
|
|||
X int `json:"x"`
|
||||
Y int `json:"y"`
|
||||
}
|
||||
|
||||
func (w Waypoint) GetX() int {
|
||||
return w.X
|
||||
}
|
||||
|
||||
func (w Waypoint) GetY() int {
|
||||
return w.Y
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue