Park/Paths/PathType.cs
namespace HC3;

/// <summary>
/// What type of path is this?
/// </summary>
public enum PathType
{
	Path,
	Queue
}

/// <summary>
/// Specifies the elevation type of a path segment, such as flat, ascending stairs, or descending stairs.
/// </summary>
public enum PathElevation
{
	Flat,
	StairUp,
	StairDown
}