ACSE/ACSE.WinForms/Program.cs
Cuyler36 b8f8f866fd Split ACSE into Core & WinForms projects
This will help code maintainability, and allow for cross platform support if another UI system is created.

Code refactoring will come at some point in the future.
2018-10-31 19:01:03 -04:00

22 lines
517 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ACSE.WinForms
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}