initial commit

This commit is contained in:
2026-08-10 19:37:10 +02:00
commit 3701761539
21 changed files with 1646 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
namespace HatariZipLauncher
{
class Program
{
static void Main(string[] args)
{
Console.Title = "Hatari ZIP Launcher";
var app = new LauncherApp();
app.Run();
}
}
}