1
Fork 0
mirror of https://github.com/thegeneralist01/Scene-Manager-DevRepo synced 2026-01-11 23:50:29 +01:00

Changed PathNum to Number

This commit is contained in:
Rich Dunne 2020-09-05 14:06:38 -06:00
parent 30ff396e0d
commit 9a18c529cc

View file

@ -11,7 +11,7 @@ namespace SceneManager
public class Path public class Path
{ {
public int PathNum { get; private set; } public int Number { get; private set; }
public bool IsEnabled { get; private set; } public bool IsEnabled { get; private set; }
public State State { get; set; } public State State { get; set; }
@ -19,20 +19,20 @@ namespace SceneManager
public Path(int pathNum, bool pathFinished, bool pathDisabled, List<Waypoint> waypoints) public Path(int pathNum, bool pathFinished, bool pathDisabled, List<Waypoint> waypoints)
{ {
PathNum = pathNum; Number = pathNum;
IsEnabled = pathDisabled; IsEnabled = pathDisabled;
Waypoints = waypoints; Waypoints = waypoints;
} }
public Path(int pathNum, State pathState) public Path(int pathNum, State pathState)
{ {
PathNum = pathNum; Number = pathNum;
State = pathState; State = pathState;
} }
public void SetPathNumber(int pathNum) public void SetPathNumber(int pathNum)
{ {
PathNum = pathNum; Number = pathNum;
} }
private void LowerWaypointBlipsOpacity() private void LowerWaypointBlipsOpacity()