//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //Mario Foe Interface //Description: Defines the behavior that governers all enemies of the Mario // Brothers. //CS 284 //Programmed by Jonathan Voris //for 2/8/06 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ package MarioFoes; interface MarioFoe { public String name(); public String color(); public String move(); public String toString(); }