From 9a18c529ccf60a84efe5efee007aaa8dab609c34 Mon Sep 17 00:00:00 2001 From: Rich Dunne Date: Sat, 5 Sep 2020 14:06:38 -0600 Subject: [PATCH] Changed PathNum to Number --- SceneManager/Object Classes/Path.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SceneManager/Object Classes/Path.cs b/SceneManager/Object Classes/Path.cs index 023e420..4751be3 100644 --- a/SceneManager/Object Classes/Path.cs +++ b/SceneManager/Object Classes/Path.cs @@ -11,7 +11,7 @@ namespace SceneManager public class Path { - public int PathNum { get; private set; } + public int Number { get; private set; } public bool IsEnabled { get; private set; } public State State { get; set; } @@ -19,20 +19,20 @@ namespace SceneManager public Path(int pathNum, bool pathFinished, bool pathDisabled, List waypoints) { - PathNum = pathNum; + Number = pathNum; IsEnabled = pathDisabled; Waypoints = waypoints; } public Path(int pathNum, State pathState) { - PathNum = pathNum; + Number = pathNum; State = pathState; } public void SetPathNumber(int pathNum) { - PathNum = pathNum; + Number = pathNum; } private void LowerWaypointBlipsOpacity()