Program.cs 290 B

123456789101112131415
  1. // Entry point for Windows platform
  2. using System;
  3. namespace StarWarrior.Windows
  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. }