Commit 0a36a8ee authored by Ari Trachtenberg's avatar Ari Trachtenberg
Browse files

Cleaning up.

parent c9b092e2
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
package edu.bu.ec504.spr19.Brain;
package edu.bu.ec504.spr24.Brain;

import edu.bu.ec504.spr19.sameGameTris.GUI;
import edu.bu.ec504.spr24.sameGameTris.GUI;

/**
 * A very simple Brain for the game.
 */
public class simpleBrain extends Brain {
public class SimpleBrain extends Brain {
	
	// fields
private volatile boolean allDone = false; // when set to true, the Brain should stop what it's doing and exit (at an appropriate time)

	public simpleBrain(GUI myGUI) {
	public SimpleBrain(GUI myGUI) {
		super(myGUI);
	}

@@ -36,4 +36,3 @@ private volatile boolean allDone = false; // when set to true, the Brain should
				myGUI.makeMove(0, myGUI.boardHeight()-1); // i.e. click on the lower left corner
	}
}
	
 No newline at end of file
Loading