Program.cs 294 B

123456789101112131415
  1. // Entry point for DesktopGL platform
  2. using System;
  3. namespace StarWarrior.DesktopGL
  4. {
  5. public static class Program
  6. {
  7. [STAThread]
  8. static void Main(string[] args)
  9. {
  10. using (var game = new StarWarriorGame())
  11. game.Run();
  12. }
  13. }
  14. }