mirror of
https://github.com/skoelle/marcer-gamedvd-launcher.git
synced 2026-09-17 18:50:25 +00:00
13 lines
241 B
C#
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();
|
|
}
|
|
}
|
|
}
|