2
0

Program.cs 473 B

12345678910111213141516171819202122
  1. //-----------------------------------------------------------------------------
  2. // PeerToPeerGame.cs
  3. //
  4. // Microsoft XNA Community Game Platform
  5. // Copyright (C) Microsoft Corporation. All rights reserved.
  6. //-----------------------------------------------------------------------------
  7. using System;
  8. namespace PeerToPeer.Windows
  9. {
  10. class Program
  11. {
  12. public static void Main(string[] args)
  13. {
  14. using (var game = new PeerToPeerGame())
  15. {
  16. game.Run();
  17. }
  18. }
  19. }
  20. }