StableVersion4.3/HL_FristAidPlatform_Public/Helpers/GraphDirection.cs

25 lines
442 B
C#

namespace HL_FristAidPlatform_Public
{
public enum GraphDirection
{
/// <summary>
/// The upward
/// </summary>
Upward = 1,
/// <summary>
/// The downward
/// </summary>
Downward,
/// <summary>
/// The leftward
/// </summary>
Leftward,
/// <summary>
/// The rightward
/// </summary>
Rightward
}
}