/*
****************************************************************************
*  Kelli Wiseth
*  kelli@alameda-tech-lab.com
*  CIS 255AX
*  Program name: MyShape.java
*  Program Description: An interface that is used to demonstrate polymorphism.
*         Each class that implements this interface (directly or indirectly, 
*         through inheritance) will provide its own implementation of 
*         the empty draw() method provided in this interface.
*
* Assignment #6
* 26 April 2005
*****************************************************************************
*/

import java.awt.*;



public interface MyShape {
	public void draw (Graphics g);
}