freeso/TSOClient/tso.debug/Program.cs

20 lines
427 B
C#
Raw Permalink Normal View History

using System;
2014-02-02 10:00:29 +00:00
using System.Windows.Forms;
namespace FSO.Debug
2014-02-02 10:00:29 +00:00
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}