Program.cs 252 B

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