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-13 00:05:05 +04:00
|
|
|
Application.Run(new ServiceForm2());
|
|
|
|
// -> OceanForm1() inside*
|
2024-06-12 12:48:26 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|