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