2024-02-12 00:08:06 +04:00
|
|
|
namespace ProjectMonorail
|
2024-02-01 19:35:38 +04:00
|
|
|
{
|
|
|
|
internal static class Program
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The main entry point for the application.
|
|
|
|
/// </summary>
|
|
|
|
[STAThread]
|
|
|
|
static void Main()
|
|
|
|
{
|
|
|
|
// To customize application configuration such as set high DPI settings or default font,
|
|
|
|
// see https://aka.ms/applicationconfiguration.
|
|
|
|
ApplicationConfiguration.Initialize();
|
2024-03-10 19:05:31 +04:00
|
|
|
Application.Run(new FormMonorailCollection());
|
2024-02-01 19:35:38 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|