Esempio n. 1
0
 public FlyingNavigation(IEnumerable <Location> waypoints, bool loopWaypoints, FlyingWaypointsType type)
 {
     _waypoints                 = new List <Location>(waypoints);
     _loopWaypoints             = loopWaypoints;
     CurrentFlyingWaypointsType = type;
     UseNearestWaypoint();
 }
Esempio n. 2
0
 public FlyingNavigation(IEnumerable<Location> waypoints, bool loopWaypoints, FlyingWaypointsType type)
 {
     _waypoints = new List<Location>(waypoints);
     _loopWaypoints = loopWaypoints;
     CurrentFlyingWaypointsType = type;
     UseNearestWaypoint();
 }
Esempio n. 3
0
 private void ProfileTypeComboBoxSelectedIndexChanged(object sender, EventArgs e)
 {
     _waypointSelected = (FlyingWaypointsType)profileTypeComboBox.SelectedIndex;
 }
Esempio n. 4
0
 private void ProfileTypeComboBoxSelectedIndexChanged(object sender, EventArgs e)
 {
     _waypointSelected = (FlyingWaypointsType) profileTypeComboBox.SelectedIndex;
 }