2
0

Program.cs 360 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NetworkStateManagement
  6. {
  7. class Program
  8. {
  9. static void Main(string[] args)
  10. {
  11. using (NetworkStateManagementGame game = new NetworkStateManagementGame())
  12. {
  13. game.Run();
  14. }
  15. }
  16. }
  17. }