2014-07-08 12:58:53 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Windows.Forms;
|
2018-09-27 08:05:10 +00:00
|
|
|
|
using Quasar.Server.Forms;
|
2014-07-08 12:58:53 +00:00
|
|
|
|
|
2018-09-27 08:05:10 +00:00
|
|
|
|
namespace Quasar.Server
|
2014-07-08 12:58:53 +00:00
|
|
|
|
{
|
2015-04-21 18:27:52 +00:00
|
|
|
|
internal static class Program
|
2014-07-08 12:58:53 +00:00
|
|
|
|
{
|
2015-01-13 18:29:11 +00:00
|
|
|
|
[STAThread]
|
2015-04-21 18:27:52 +00:00
|
|
|
|
private static void Main()
|
2015-01-13 18:29:11 +00:00
|
|
|
|
{
|
|
|
|
|
Application.EnableVisualStyles();
|
|
|
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
2015-01-27 22:47:13 +00:00
|
|
|
|
Application.Run(new FrmMain());
|
2015-01-13 18:29:11 +00:00
|
|
|
|
}
|
2014-07-08 12:58:53 +00:00
|
|
|
|
}
|
2018-09-27 08:05:10 +00:00
|
|
|
|
}
|