/** Apples are food for other creatures; they just sit still and don't
attack.*/
public class Apple extends Creature {
public String getAuthorName() {
return "Darwin SDK";
}
public String getDescription() {
return "Apples are food for other creatures; they just sit still and don't attack.";
}
}