mirror of https://github.com/quasar/Quasar.git
13 lines
278 B
C#
13 lines
278 B
C#
|
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());
|
|||
|
}
|
|||
|
}
|