//File:  TestMouse.java
import CSLib.TrickMouse;
public class TestMouse
{
	public static void main (String [] args)
	{
		TrickMouse bill = new TrickMouse();  //Construct a TrickMouse
						     //named bill
		String title = args[0];
		bill.setTitle(title);  //Change the title of the window
						    //to "Bill Goes Crazy"
		bill.hitWall();  		    //Tell bill to hit the wall
	}
}
