Program.cs 291 B

12345678910111213141516
  1. using System;
  2. namespace StateObject.DesktopGL
  3. {
  4. public static class Program
  5. {
  6. [STAThread]
  7. public static void Main(string[] args)
  8. {
  9. using (var game = new StateObjectGame())
  10. {
  11. game.Run();
  12. }
  13. }
  14. }
  15. }