Files
SabreTools/SabreToolsUI/Program.cs
Matt Nadareski ac03051e04 Start getting design together
First and foremost are the Generate options, which are populated with functions similar to ListSystems and ListSources.
2016-03-29 21:23:22 -07:00

23 lines
440 B
C#

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