Skeleton for Venison! The tile-laying game of farming, brigandeering and

general conquest.


git-svn-id: https://samskivert.googlecode.com/svn/trunk@347 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2001-10-09 20:27:35 +00:00
parent 9037e049a4
commit bec5738f2b
15 changed files with 390 additions and 3 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/sh
BINDIR=`dirname $0`
JAVA_ARGS=""
# grab the -Dinviter if it's specified
if [ ! -z "$1" ] ; then
case $1 in
-Dinvitee=*)
JAVA_ARGS=$1
shift
;;
esac
fi
$BINDIR/runjava $JAVA_ARGS com.threerings.micasa.client.MiCasaApp $*