コード例 #1
0
 public void DeleteFirstWaypoint()
 {
     WaypointLocations.RemoveAt(0);
     OnLocalWorldMapEvent?.Invoke(this, this);
 }
コード例 #2
0
 public void AddNewWaypoints(PointD location)
 {
     WaypointLocations.Add(location);
     OnLocalWorldMapEvent?.Invoke(this, this);
 }