#!/bin/sh

DATA_PATH="/usr/share/plee-the-bear"
GENERIC_LIB_PATH="/usr/lib/libbear_generic_items.so"
PTB_LIB_PATH="/usr/lib/libplee_the_bear.so"

/usr/bin/running-bear \
  --game-name="Plee the Bear" --screen-width=800 --screen-height=600 \
  --stats-destination=http://plee-the-bear.sourceforge.net/stats.php \
  --active-area=500 --data-path="$DATA_PATH" \
  --item-library="$GENERIC_LIB_PATH" --item-library="$PTB_LIB_PATH" \
  --start-level=level/gamned.cl \
  "$@"

