Program.cs 530 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Platformer
  6. {
  7. class Program
  8. {
  9. static void Main(string[] args)
  10. {
  11. try
  12. {
  13. using (PlatformerGame game = new PlatformerGame())
  14. {
  15. game.Run();
  16. }
  17. }
  18. catch(Exception ex)
  19. {
  20. Console.WriteLine(ex.ToString());
  21. Console.ReadLine();
  22. }
  23. }
  24. }
  25. }