Program.cs 232 B

12345678910111213
  1. using Gemstone_Hunter;
  2. namespace GemstoneHunter.DesktopGL
  3. {
  4. public static class Program
  5. {
  6. public static void Main()
  7. {
  8. using (var game = new Game1())
  9. game.Run();
  10. }
  11. }
  12. }