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