| 12345678910111213141516171819202122 |
- //-----------------------------------------------------------------------------
- // PeerToPeerGame.cs
- //
- // Microsoft XNA Community Game Platform
- // Copyright (C) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
- using System;
- namespace PeerToPeer.Windows
- {
- class Program
- {
- public static void Main(string[] args)
- {
- using (var game = new PeerToPeerGame())
- {
- game.Run();
- }
- }
- }
- }
|