Program.cs 224 B

12345678910111213
  1. using Shooter;
  2. namespace Shooter.Windows
  3. {
  4. internal static class Program
  5. {
  6. private static void Main()
  7. {
  8. using (var game = new ShooterGame())
  9. game.Run();
  10. }
  11. }
  12. }