mirror of https://github.com/axmolengine/axmol.git
11 lines
185 B
Bash
11 lines
185 B
Bash
|
SHELL_DIR=$(cd "$(dirname "$0")"; pwd)
|
||
|
pushd ${SHELL_DIR}
|
||
|
|
||
|
# include the config
|
||
|
source ./config.sh
|
||
|
|
||
|
# show dialog for continue
|
||
|
python ./toolsForGame/main.py ${PLUGINS_CAN_SELECT}
|
||
|
|
||
|
popd
|