PIbd-22_Shabunov_O.A._AirBo.../AirBomber/Program.cs

12 lines
244 B
C#
Raw Normal View History

2023-11-18 22:09:52 +04:00
namespace AirBomber
{
internal static class Program
{
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
2023-11-19 17:11:10 +04:00
Application.Run(new FormEntityCollection());
2023-11-18 22:09:52 +04:00
}
}
}