from Prop import Prop

class Item(Prop):
	type = "item"
	def __init__(self, rectangle, id, description):
		Prop.__init__(self, rectangle, id)
		self.description = description


