2024-06-12 12:48:26 +04:00
|
|
|
namespace ProjectCruiser
|
|
|
|
{
|
|
|
|
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-06-12 14:29:35 +04:00
|
|
|
Application.Run(new OceanForm1());
|
2024-06-12 12:48:26 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|