Files
marcer-gamedvd-launcher/HatariZipLauncher/Program.cs
T
2026-08-10 20:08:58 +02:00

13 lines
241 B
C#

namespace HatariZipLauncher
{
class Program
{
static void Main(string[] args)
{
Console.Title = "Marcer GameDVD Launcher";
var app = new LauncherApp();
app.Run();
}
}
}