Updating skins
Some checks failed
Generate Skin previews, OSK files and per skin documentation / Full CI/CD Pipeline (push) Has been cancelled

This commit is contained in:
Your Name
2025-10-16 00:09:36 +02:00
parent 1e000d2304
commit 63ad31d7fd
9469 changed files with 30204 additions and 24 deletions

View File

@@ -0,0 +1,23 @@
@echo off
setlocal
set hspath=%CD%
set osupath="%hspath%\..\"
if exist "%hspath%\%1" (
cd %osupath%
del "drum-*.wav"
del "normal-*.wav"
del "soft-*.wav"
echo Deleted previous hitsounds!
echo Hitsounds folder "%1" found!
cd "%hspath%\%1"
dir
xcopy * %osupath%
echo Copied successfully
) else (
echo Hitsounds folder not found. Check your input!
)