mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-02-03 16:39:07 +00:00
13 lines
467 B
Bash
13 lines
467 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ $# -eq 0 ]
|
|
then
|
|
echo "Select a version to use"
|
|
exit 1
|
|
fi
|
|
|
|
./script/build-ce-loader-script -i $1/cgunit.lua -o $2/Load_CGUnit.lua
|
|
./script/build-ce-loader-script -i $1/cgplayer.lua -o $2/Load_CGPlayer.lua
|
|
./script/build-ce-loader-script -i $1/cgitem.lua -o $2/Load_CGItem.lua
|
|
./script/build-ce-loader-script -i $1/cgcontainer.lua -o $2/Load_CGContainer.lua
|
|
./script/build-ce-loader-script -i $1/cgcorpse.lua -o $2/Load_CGCorpse.lua
|