#!/bin/sh

if [ $# -ne 1 ]
then
	echo -e "Usage: \n\tsivop.sh <obj-file>"
	exit 1
fi

java -classpath jogl.jar:sivop-giovani.jar Sivop $1

