using System; using BloomSample.Core; namespace BloomSample.DesktopGL { public static class Program { [STAThread] public static void Main() { using (var game = new Game1()) game.Run(); } } } // DesktopGL-specific entry point will be added here.