Revert "Revert "Added Next and Previous Methods to Route""

This commit is contained in:
Luke Else 2022-01-11 18:35:43 +00:00 committed by GitHub
parent 0449f7ac73
commit edc5cc12b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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(" ");