Quasar/Server/Program.cs

17 lines
365 B
C#
Raw Normal View History

2014-07-08 05:58:53 -07:00
using System;
using System.Windows.Forms;
2015-01-13 10:29:11 -08:00
using xServer.Forms;
2014-07-08 05:58:53 -07:00
2015-01-13 10:29:11 -08:00
namespace xServer
2014-07-08 05:58:53 -07:00
{
internal static class Program
2014-07-08 05:58:53 -07:00
{
2015-01-13 10:29:11 -08:00
[STAThread]
private static void Main()
2015-01-13 10:29:11 -08:00
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
2015-01-27 14:47:13 -08:00
Application.Run(new FrmMain());
2015-01-13 10:29:11 -08:00
}
2014-07-08 05:58:53 -07:00
}
}