Program.cs 319 B

1234567891011121314151617
  1. using System;
  2. using BloomSample.Core;
  3. namespace BloomSample.DesktopGL
  4. {
  5. public static class Program
  6. {
  7. [STAThread]
  8. public static void Main()
  9. {
  10. using (var game = new Game1())
  11. game.Run();
  12. }
  13. }
  14. }
  15. // DesktopGL-specific entry point will be added here.