/** Treasure is the goal of a Maze map.*/
public final class Treasure extends Creature {
public String getAuthorName() {
return "Darwin SDK";
}
public String getDescription() {
return "Treasure is the goal of a Maze map.";
}
}