Add: 2026-05-29-熔岩之海与云鲸之梦

This commit is contained in:
Chen Gu
2026-08-13 17:00:22 +08:00
parent 4658b96406
commit 18ae0ae72b
1124 changed files with 55162 additions and 206829 deletions
+24
View File
@@ -0,0 +1,24 @@
@echo off
title MaQiangTang
echo.
echo Starting MaQiangTang...
echo.
cd /d "D:\共享\extracted_files\$PLUGINSDIR\app-64\resources\decompiled_code"
if errorlevel 1 (
echo Cannot find directory!
pause
exit /b 1
)
if not exist "node_modules\electron" (
echo Installing Electron...
npm install electron --save-dev
)
echo Launching...
npx electron .
pause