Ejemplo n.º 1
0
 public GameOptions(TypeOfGame typeOfGame, Player player1, computerAI computerPlayer)
 {
     this._TypeOfGame     = typeOfGame;
     this._Player1        = player1;
     this._ComputerPlayer = computerPlayer;
 }
Ejemplo n.º 2
0
 //Initializes a human vs computer game
 public GameBrain(Player player1, computerAI computerPlayer)
 {
     this.player1 = player1;
     this.player2 = computerPlayer;
     InitializeBoard();
 }