freeso/TSOClient/FSO.Server.Debug/Program.cs

20 lines
446 B
C#
Raw Permalink Normal View History

2015-08-16 20:47:43 +01:00
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);
2015-09-06 14:37:27 +01:00
//Application.Run(new NetworkDebugger());
2015-08-16 20:47:43 +01:00
}
}
}