/*
 * Created on Aug 30, 2005
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package theaterEx.sy;

import mcm.theater.*;

/**
 * @author monika
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class RectangleFirst extends Actor {
	public void act() {
		move(250);   // move 250 pixels forward 
		left(90);    // turn 90 degrees to the left
		move(60);    // move 60 pixels forward
		left(90);    // turn 90 degrees to the left
		move(250);   // move 250 pixels forward 
		left(90);    // turn 90 degrees to the left
		move(60);    // move 60 pixels forward
		left(90);    // turn 90 degrees to the left
	}
}
