/** * an item that is around the house. * * Joe Rivard * 4/13/03 */ public class Pants extends Items { /** * Constructor for objects of class Pants */ public Pants() { description = "pants"; use = "you need to grab these so Bethann has some " + "pants to wear"; grabbed = false; } }