PIBD-11_Basalov_A.D_Simple/ProjectElectricLocomotive/Program.cs
2024-02-19 08:25:06 +03:00

17 lines
522 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 FormlectricLocomotive());
}
}
}