Added Next and Previous Methods to Route
This commit is contained in:
parent
b2729b7924
commit
bc87700683
@ -36,6 +36,22 @@ namespace EFB.Models
|
||||
}
|
||||
}
|
||||
|
||||
public IWaypoint Next(){
|
||||
if(Current.Next != null){
|
||||
Current = current.Next;
|
||||
return Current;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
public IWaypoint Previous(){
|
||||
if(Current.Previous != null){
|
||||
Current = current.Previous;
|
||||
return Current;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
//Generate a route Object
|
||||
public static RouteModel StringToRoute(string departure, string arrival, uint cruise, string routeString){
|
||||
string[] routeTemp = routeString.Split(" ");
|
||||
|
Loading…
Reference in New Issue
Block a user