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
+14
View File
@@ -0,0 +1,14 @@
@echo off
REM Starts HatariZipLauncher.exe from the correct folder
setlocal
set EXE_PATH=%~dp0HatariZipLauncher\bin\Release\net10.0\HatariZipLauncher.exe
if not exist "%EXE_PATH%" (
echo [ERROR] Application not built. Please run build.cmd first.
exit /b 1
)
pushd "HatariZipLauncher\bin\Release\net10.0"
"HatariZipLauncher.exe"
popd