14 lines
327 B
C#
14 lines
327 B
C#
public class Enums
|
|
{
|
|
public enum GameResult{None, Win, Lose, Draw}
|
|
|
|
public enum PlayerType{None, PlayerA, PlayerB}
|
|
|
|
public enum StoneType{ None, Black, White }
|
|
|
|
public enum StoneState{ None, Selected, Blocked, LastPositioned }
|
|
|
|
public enum GameType{ None, SinglePlay, MultiPlay, Replay }
|
|
|
|
}
|