#!/bin/bash

#  Steam claims they are going to put us in the app directory.
#  v2 of run_steam.sh - fixed passing parameters with $@ and enabled 64bit version

if [ `arch` == "x86_64" ]; then
    ./checklibs.sh libs64 Amnesia.bin64
    ./Launcher.bin64 $@
else
    ./checklibs.sh libs Amnesia.bin
    ./Launcher.bin $@
fi
