17 lines
496 B
C#
Raw Normal View History

2024-02-04 11:14:51 +04:00
namespace Seaplane
{
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-02-07 08:29:34 +04:00
Application.Run(new FormSeaplane());
2024-02-04 11:14:51 +04:00
}
}
}