Rotationator/Rotationator/VersusRule.cs
OatmealDome a15ac807e8 VersusRule: Use -1 value for None
Doing this to match JelonzoBotDX.Common.
2024-08-11 01:33:09 -04:00

26 lines
351 B
C#

namespace Rotationator;
public enum VersusRule
{
None = -1,
/// <summary>
/// Turf War
/// </summary>
Paint,
/// <summary>
/// Rainmaker
/// </summary>
Goal,
/// <summary>
/// Splat Zones
/// </summary>
Area,
/// <summary>
/// Tower Control
/// </summary>
Lift
}