PingPong/PingPong.GameEngine/Components/TeamRotationType.cs

22 lines
302 B
C#
Raw Normal View History

2019-11-08 03:33:41 -06:00
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
}
}