コード例 #1
0
ファイル: items.py プロジェクト: jiiieff/pyf
	def __init__(self, type, output, source, destination, item):
		self.destination = destination
		'''Where item is being moved to.'''
		self.source = source
		'''Where item is being moved from.'''
		self.item = item
		'''What item is being moved. Does NOT always equal event.target.'''
		HandlerEvent.__init__(self, type, output)
コード例 #2
0
ファイル: items.py プロジェクト: tomviner/text-game
 def __init__(self, type, output, source, destination, item):
     self.destination = destination
     '''Where item is being moved to.'''
     self.source = source
     '''Where item is being moved from.'''
     self.item = item
     '''What item is being moved. Does NOT always equal event.target.'''
     HandlerEvent.__init__(self, type, output)
コード例 #3
0
ファイル: game.py プロジェクト: tomviner/text-game
	def __init__(self, type):
		HandlerEvent.__init__(self, type, None)
		self.type = type
コード例 #4
0
ファイル: game.py プロジェクト: tomviner/text-game
 def __init__(self, type):
     HandlerEvent.__init__(self, type, None)
     self.type = type