15 lines
267 B
C#
Raw Normal View History

2023-09-21 17:40:56 +03:00
using System.Drawing;
namespace ProjectAirFighter
{
internal static class Program
{
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
2023-10-15 16:11:27 +03:00
Application.Run(new FormAirplaneCollection());
2023-09-21 17:40:56 +03:00
}
}
}