Program.cs 290 B

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