//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //Attacker Interface //Description: Interface for enemies with a special way to attack Mario. //CS 284 //Programmed by Jonathan Voris //2/21/06 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ package MarioFoes; interface attacker { public String attack(); }