12 lines
234 B
C#
Raw Permalink 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-18 22:48:03 +04:00
Application.Run(new BomberForm());
2023-11-18 22:09:52 +04:00
}
}
}