Program.cs 258 B

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