using System; namespace ShaderTest.DesktopGL { /// /// The main entry point for the DesktopGL application. /// public static class Program { /// /// Application entry point. /// [STAThread] static void Main() { using (var game = new ShaderTestGame()) game.Run(); } } }