mirror of
https://github.com/thegeneralist01/Scene-Manager-DevRepo
synced 2026-01-11 23:50:29 +01:00
Mid-refactor
This commit is contained in:
parent
b52f160ff7
commit
f4c1c0c693
18 changed files with 1721 additions and 916 deletions
26
SceneManager/Object Classes/Path.cs
Normal file
26
SceneManager/Object Classes/Path.cs
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace SceneManager
|
||||
{
|
||||
public class Path
|
||||
{
|
||||
public int PathNum;
|
||||
public bool PathFinished;
|
||||
public bool PathDisabled;
|
||||
public List<Waypoint> Waypoint = new List<Waypoint>() { };
|
||||
|
||||
public Path(int pathNum, bool pathFinished, bool pathDisabled, List<Waypoint> waypointData)
|
||||
{
|
||||
PathNum = pathNum;
|
||||
PathFinished = pathFinished;
|
||||
PathDisabled = pathDisabled;
|
||||
Waypoint = waypointData;
|
||||
}
|
||||
|
||||
public Path(int pathNum, bool pathFinished)
|
||||
{
|
||||
PathNum = pathNum;
|
||||
PathFinished = pathFinished;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue