mirror of
https://github.com/RoyalnetworkTR/simple-launcher.git
synced 2026-09-25 06:30:12 +03:00
17 lines
528 B
C#
17 lines
528 B
C#
namespace OfflineMinecraftLauncher
|
|
{
|
|
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();
|
|
Application.Run(new LauncherForm());
|
|
}
|
|
}
|
|
} |