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