#!/usr/bin/env bash

GAMENAME="CW3"
ARCH=`uname -m`

if [ "$ARCH" != "x86_64" ]; then
	ARCH="x86"
fi 

exec "./"$GAMENAME"."$ARCH "$@" 
