/** * a room in the house, it is a child class of AdvancedRoom * * Joe Rivard * 4/13/03 */ public class BackYard extends AdvancedRoom { /** * returns the short description of the room * @return String, the short description of the room */ public String shortDescription() { return "YOU HAVE LOST THE COPS!!!!" + "\n" + "YOU WIN!!!!"; } }