//-----------------------------------------------------------------------------
// Program.cs
//
//-----------------------------------------------------------------------------
using System;
namespace NetworkPrediction
{
///
/// The main class for the Windows version.
///
public static class Program
{
///
/// The main entry point for the application.
///
[STAThread]
static void Main()
{
using (var game = new NetworkPredictionGame())
game.Run();
}
}
}