Esempio n. 1
0
        static void Main(string[] args)
        {
            //initialize new board of 6x6; mark height of the exit as 3
            RushHour rh = new RushHour(6, 3);

            rh.SolvePuzzles();
        }
Esempio n. 2
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using(RushHour game = new RushHour()) {
         game.Run();
     }
 }