common 309 B

1234567891011121314151617
  1. function info {
  2. echo "INFO: $*"
  3. }
  4. function warn {
  5. >&2 echo "WARN: $*"
  6. }
  7. function error {
  8. >&2 echo "ERROR: $* Cannot continue"
  9. exit 1
  10. }
  11. rename_files=("UnityCrashHandler64.exe")
  12. additional_files=("Generated" "TVMBootstrap.dll" "launch.bat")
  13. game_files=("StarRailBase.dll" "UnityPlayer.dll")