16 lines
285 B
C#
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") {}
|
|
}
|
|
} |