コード例 #1
0
ファイル: attack_menu.py プロジェクト: cloew/Pokemon-Project
 def __init__(self, userPkmn, targets, environment):
     """ Create the Action Menu for the given Pokemon """
     self.pkmn = userPkmn
     self.targets = targets
     self.environment = environment
     self.action = None
     BoxMenu.__init__(self)
コード例 #2
0
 def __init__(self, userPkmn, targets, environment):
     """ Create the Action Menu for the given Pokemon """
     self.pkmn = userPkmn
     self.targets = targets
     self.environment = environment
     self.action = None
     BoxMenu.__init__(self)
コード例 #3
0
 def __init__(self, userPkmn):
     """ Create the Action Menu for the given Pokemon """
     self.pkmn = userPkmn
     self.action = None
     BoxMenu.__init__(self)
コード例 #4
0
ファイル: switch_menu.py プロジェクト: cloew/Pokemon-Project
 def __init__(self, userPkmn):
     """ Create the Action Menu for the given Pokemon """
     self.pkmn = userPkmn
     self.action = None
     BoxMenu.__init__(self)