2023-09-19 19:04:33 +04:00
|
|
|
namespace ElectricLocomotive
|
|
|
|
{
|
|
|
|
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();
|
2023-10-17 13:49:31 +04:00
|
|
|
Application.Run(new FormLocomotivCollection());
|
2023-09-19 19:04:33 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|