using System; namespace Waypoint.DesktopGL { /// /// The main class for DesktopGL platform. /// public static class Program { [STAThread] static void Main() { using (var game = new WaypointGame()) game.Run(); } } }