Ejemplo n.º 1
0
 static void Main(string[] args)
 {
     Game game = new Game(NumPlayers, HandSize);
      game.RunToCompletion();
      Console.WriteLine("\n\nDone! Final Score: {0}", game.FinalScore());
      game.PrintProgress();
      Console.WriteLine("Total Move Simulations: {0}, Aborted: {1}", Simulator.SimulationCount, Simulator.AbortedSimCount);
      Console.Write("Original Deck: ");
      game.Deck.PrintCardsInOrder();
      Console.ReadLine(); // Stop to see results.
 }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            Game game = new Game(NumPlayers, HandSize);

            game.RunToCompletion();
            Console.WriteLine("\n\nDone! Final Score: {0}", game.FinalScore());
            game.PrintProgress();
            Console.WriteLine("Total Move Simulations: {0}, Aborted: {1}", Simulator.SimulationCount, Simulator.AbortedSimCount);
            Console.Write("Original Deck: ");
            game.Deck.PrintCardsInOrder();
            Console.ReadLine(); // Stop to see results.
        }