gameDevGuide.sh 280 B

12345678910111213
  1. SHELL_DIR=$(cd "$(dirname "$0")"; pwd)
  2. type gawk >/dev/null 2>&1 || { echo >&2 "gawk is required, PLZ install it first."; exit 1; }
  3. pushd ${SHELL_DIR}
  4. # include the config
  5. source ./config.sh
  6. # show dialog for continue
  7. python ./toolsForGame/main.py ${PLUGINS_CAN_SELECT}
  8. popd