Exemple #1
0
 public Game(Player player1, Player player2)
 {
     GameBoard = new GameBoard(5, 5);
     //_player1 = ()
     CurrentPlayer = Player1;
 }
Exemple #2
0
 public override bool PlacePiece(GameBoard board, int col, int row)
 {
     throw new NotImplementedException();
     // will need to program this so that the computer can
     // randomly select a cell to place a piece on
 }