using System; namespace CS_3505_Project_06 { static class Program { /// /// The main entry point for the application. /// static void Main(string[] args) { using (Game06 game = new Game06()) { game.Run(); } } } }