/*****************************************************************
* Program3 : MouseBrain
* Programmer: Insert your name here 
* 
* Class: COMP 110-01         Instructor: Tyler Johnson
*         
* Pledge: I have neither given nor received unauthorized aid
* on this program.     (signature on file)
*
* Description: This class provides the brain to a mouse who is
*              searching for a piece of cheese in a maze. It will
*              detect the strength of the odor of the cheese and 
*              move in its general direction.
*
* Input: This class requires a Mouse body as input.
*
* Output: No outputs.
*
******************************************************************/

public class MouseBrain {
	
	/* YOUR CODE HERE */
	
	
	
	/* END */
	
	public static void main(String[] args){
		//Create a new mouse brain
		MouseBrain mouseBrain = new MouseBrain();
		//Name our mouse brain Alfred
		mouseBrain.setName("Alfred");
		//Create a new mouse body
		MouseBody mouseBody = new MouseBody();
		//Attach our brain to that body
		mouseBrain.setMouseBody(mouseBody);
		//Put our mouse into a new maze
		new MouseMaze(mouseBrain, mouseBody);
	}

}
