1
0
mirror of https://github.com/lidgren/lidgren-network-gen3.git synced 2026-05-15 22:56:30 +09:00
Files
lidgren-network-gen3/Samples/XNA sample/XnaGameClient/Program.cs

20 lines
276 B
C#

using System;
namespace XnaGameClient
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
static void Main(string[] args)
{
using (Game1 game = new Game1())
{
game.Run();
}
}
}
}