11 lines
256 B
C#
11 lines
256 B
C#
public class Enums
|
|
{
|
|
public enum GameResult{None, Win, Lose, Draw}
|
|
|
|
public enum PlayerTpe{None, PlayerA, PlayerB}
|
|
|
|
public enum StoneType{ None, Black, White }
|
|
|
|
public enum StoneState{ None, Selected, Blocked, LastPositioned }
|
|
}
|