2023-10-05 21:45:54 +04:00
|
|
|
namespace RoadTrain
|
|
|
|
{
|
|
|
|
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();
|
2023-10-10 22:08:33 +04:00
|
|
|
Application.Run(new FormTrainCollection());
|
2023-10-05 21:45:54 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|