mirror of
https://github.com/thegeneralist01/Scene-Manager-DevRepo
synced 2026-01-11 23:50:29 +01:00
26 lines
679 B
C#
26 lines
679 B
C#
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;
|
|
}
|
|
}
|
|
}
|