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(); }
/// <summary> /// The main entry point for the application. /// </summary> static void Main(string[] args) { using(RushHour game = new RushHour()) { game.Run(); } }