Quasar/Server/Program.cs

13 lines
278 B
C#
Raw Normal View History

2014-07-08 12:58:53 +00:00
using System;
using System.Windows.Forms;
static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new xRAT_2.Forms.frmMain());
}
}