resetting repo

This commit is contained in:
2025-08-13 22:57:57 +02:00
parent 4e2c481910
commit c113c75fd2
42538 changed files with 142998 additions and 2142 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!
)