コード例 #1
0
	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()
コード例 #2
0
	def __init__(self):
		incWhitespace()
		iPrint("Initiating Seat...", True)
		baseDescribable.Construction.__init__(self)
		decWhitespace
コード例 #3
0
	def __init__(self):
		incWhitespace()
		iPrint("Initiating Bench...", True)
		Seat.__init__(self)
		decWhitespace()