Program.cs 259 B

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