/** * an item that is around the house. * * Joe Rivard * 4/13/03 */ public class Beer extends Items { /** * Constructor for objects of class Pants */ public Beer() { description = "beer"; use = "you need to take the beer down to the basement "; grabbed = false; } }