PingPong/PingPong.GameEngine/Components/ScoringType.cs

13 lines
121 B
C#
Raw Normal View History

2019-11-08 03:33:41 -06:00
using System;
namespace PingPong.GameEngine.Components
{
public enum ScoringType
{
None,
Team,
Individual
}
}