import wheels.users.*;
import wheels.Color;

/**
 * A demo of the textbook's wheels package to draw graphics.
 *
 * @author Zach Tomaszewski
 * @version Sep 4, 2007
 */
public class Assignment2 {

  /**
   * Creates a sample Frame containing 3 shapes, depicting a scene
   * from Star Wars (slightly modified).
   */
  public static void main(String[] args) {
    Frame window = new Frame();

    Rectangle darth = new Rectangle(100, 300);
    darth.setColor(Color.black);
    darth.setFrameColor(Color.red);
    darth.setSize(100, 100);

    //...
  }
}
