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