15 lines
351 B
C#

namespace WarmlyLocomotive
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
Application.Run(new FormWarmlyLocomotive());
}
}
}