15 lines
351 B
C#
Raw Normal View History

namespace WarmlyLocomotive
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
2024-02-09 00:09:15 +03:00
Application.Run(new FormWarmlyLocomotive());
}
}
}