2023-10-24 22:31:17 -04:00

16 lines
285 B
C#

using System;
namespace Conjure.Input
{
public enum PlayerEnum
{
None = -1,
Player1 = 0,
Player2 = 1
}
class PlayerEnumNoneException: Exception
{
public PlayerEnumNoneException(): base("This player shouldn't be none") {}
}
}