Exemplo n.º 1
0
 def onback_prepare_to_battle(self):
     self.character_choices = CharacterList("battle_characters.txt")
     self.prepare.destroy()
     self.root.title("Select your character!")
     self.char_sel = Screen_character_selector(
         self.root, self.character_choices, self.onclose_character_selector)
Exemplo n.º 2
0
 def setup_character_selector(self):
     ''' This method is called to create the CharacterSelector screen. '''
     self.root.title("Select your character!")
     self.char_sel = Screen_character_selector(
         self.root, self.character_choices, self.onclose_character_selector)