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