Program.cs 247 B

123456789101112131415
  1. using System;
  2. namespace GemstoneHunter.Windows
  3. {
  4. public static class Program
  5. {
  6. [STAThread]
  7. static void Main()
  8. {
  9. using (var game = new GemstoneHunterGame())
  10. game.Run();
  11. }
  12. }
  13. }