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

12 lines
247 B
C#
Raw Normal View History

2023-12-15 20:58:21 +04:00
namespace Excavator
{
internal static class Program
{
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
2023-12-15 22:00:56 +04:00
Application.Run(new FormExcavatorCollection());
2023-12-15 20:58:21 +04:00
}
}
}