Program.cs 223 B

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