public POGame(SabberStoneCore.Model.Game game, bool debug)
            {
                this.origGame     = game;
                this.game         = game.Clone();
                game.Player1.Game = game;
                game.Player2.Game = game;
                prepareOpponent();
                this.debug = debug;

                if (debug)
                {
                    Console.WriteLine("Game Board");
                    Console.WriteLine(game.FullPrint());
                }
            }
 public string FullPrint()
 {
     return(game.FullPrint());
 }