mysimulation/server/FSO.Server.Debug/Program.cs

20 lines
446 B
C#
Raw Permalink Normal View History

using System;
using System.Windows.Forms;
namespace FSO.Server.Debug
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
//Application.Run(new NetworkDebugger());
}
}
}