/**
 * This class provides methods to create a comic strip for Homework 4.
 * @author <your name here>
 * @date   <the date here>
 *
 * <your comments here>
 * <be sure to tell us the desired width and height of your comic strip!>
 */

public class ComicStrip extends SimplePicture
{
  /**
   * This constructor that takes the width and height
   * of the comic strip and creates a blank image.
   * 
   * @param width the width of the desired picture
   * @param height the height of the desired picture
   * 
   * DO NOT MODIFY
   */
  public ComicStrip( int width, int height )
  {
    super( width, height );
  }
  
  public void createStrip()
  {
    //  ... fill in the blank
  }
}
