def __init__(self):
		incWhitespace()
		#iPrint("Initiating Describable...", True)
		# A dictionary holding functions used in describing a the object
		self.descriptionFunctions = dict()
		self.addDescriptionFunctions()
		self.noun = str(type(self).__name__)
		self.gender = "neuter"
		self.colours = []
		self.materials = []
		self.components = dict()
		decWhitespace()
	def __init__(self):
		incWhitespace()
		iPrint("Initiating Seat...", True)
		baseDescribable.Construction.__init__(self)
		decWhitespace
	def __init__(self):
		incWhitespace()
		iPrint("Initiating Bench...", True)
		Seat.__init__(self)
		decWhitespace()