/** * Wedge Dude brain. Decides which direction to move in using an exhaustive * recursive search of the maze. * @author you */ public class WedgeBrain { public static final int MAX_DEPTH = 50; public static final Move BAD_MOVE = new Move(null, 1000); public static Move nextMove(int currentX, int currentY, Space[][] world) { } }