1234567891011121314151617 |
- function info {
- echo "INFO: $*"
- }
- function warn {
- >&2 echo "WARN: $*"
- }
- function error {
- >&2 echo "ERROR: $* Cannot continue"
- exit 1
- }
- rename_files=("UnityCrashHandler64.exe")
- additional_files=("Generated" "TVMBootstrap.dll" "launch.bat")
- game_files=("StarRailBase.dll" "UnityPlayer.dll")
|