/** * an item that is around the house. * * Joe Rivard * 4/13/03 */ public class Ladder extends Items { /** * Constructor for objects of class Pants */ public Ladder() { description = "ladder"; use = "You need the ladder to get through the basement window"; grabbed = false; } }