//the basic player interface for use with the gui
public interface player
{
	public int[] getMove(boolean[][][] goodPos, boolean[][][] evilPos);
	public void train(int numTimes);
	public double getUtility(boolean[][][] goodPos, boolean[][][] evilPos);
}