PingPong/PingPong.GameEngine/Components/TeamRotationType.cs

22 lines
302 B
C#

using System;
namespace PingPong.GameEngine.Components
{
public enum TeamRotationType
{
/// <summary>
/// No rotation.
/// </summary>
None,
/// <summary>
/// Round robin progression.
/// </summary>
RoundRobin,
/// <summary>
/// Random reordering.
/// </summary>
Random
}
}