package yourwork;
import ignorethis.Command;
import ignorethis.Pixmap;
import java.awt.Color;
import java.awt.Dimension;
/***************************************************************
* Name:
* Course: CompSci 6, Fall 2009
* Collaborators:
* Resources Used
* Date Started:
* Purpose: YOU MUST FILL THIS IN!
*
*/
public class Student extends Command
{
public Student ()
{
super("Student");
}
public void execute (Pixmap target)
{
// TODO: something interesting
}
}