PingPong/PingPong.GameEngine/Components/ScoringType.cs

13 lines
121 B
C#

using System;
namespace PingPong.GameEngine.Components
{
public enum ScoringType
{
None,
Team,
Individual
}
}