2024-02-16 22:05:56 +04:00
|
|
|
namespace ProjectFighterJet
|
|
|
|
{
|
|
|
|
internal static class Program
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The main entry point for the application.
|
|
|
|
/// </summary>
|
|
|
|
[STAThread]
|
|
|
|
static void Main()
|
|
|
|
{
|
|
|
|
// To customize application configuration such as set high DPI settings or default font,
|
|
|
|
// see https://aka.ms/applicationconfiguration.
|
|
|
|
ApplicationConfiguration.Initialize();
|
2024-03-31 23:32:55 +04:00
|
|
|
Application.Run(new FormJetCollection());
|
2024-02-16 22:05:56 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|