PIbd22_Kuznetsov_A.V._Excav.../Excavator/Program.cs

17 lines
508 B
C#
Raw Normal View History

2023-12-15 20:58:21 +04:00
namespace Excavator
{
internal static class Program
{
2023-12-29 23:06:40 +04:00
/// <summary>
/// The main entry point for the application.
/// </summary>
2023-12-15 20:58:21 +04:00
[STAThread]
static void Main()
{
2023-12-29 23:06:40 +04:00
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
2023-12-15 20:58:21 +04:00
ApplicationConfiguration.Initialize();
2023-12-15 22:00:56 +04:00
Application.Run(new FormExcavatorCollection());
2023-12-15 20:58:21 +04:00
}
}
}