Program.cs 239 B

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