Пример #1
0
 internal LocalPlayer(ChessBoard board, bool white, NetworkInterface remoteOpponent, Material material)
     : base(white, material)
 {
     this.remoteOpponent = remoteOpponent;
 }
Пример #2
0
 protected Player(bool white, Material material)
 {
     this.white = white;
     this.material = material;
     ResetSelected();
 }
Пример #3
0
 internal void Reset(Material material)
 {
     this.material = material;
     ResetSelected();
 }
Пример #4
0
 internal NetworkPlayer(ChessBoard board, bool white, Material material)
     : base(white, material)
 {
 }