PIbd_22_Borovkov_M_V_Electr.../ElectricLocomotive/Program.cs
2023-10-23 20:14:39 +04:00

17 lines
525 B
C#

namespace ProjectElectricLocomotive
{
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();
Application.Run(new FormLocomotiveCollection());
}
}
}