def torneos(self): xjugar = PantallaTorneos.torneos(self.pantalla) while xjugar: torneo, liGames = xjugar self.gestor = GestorTorneo.GestorTorneo(self) self.gestor.inicio(torneo, liGames) self.inicio() xjugar = PantallaTorneos.unTorneo(self.pantalla, torneo)
def torneos(self): xjugar = PantallaTorneos.torneos(self.pantalla) while xjugar: nombre_torneo, liNumGames = xjugar self.gestor = GestorTorneo.GestorTorneo(self) self.gestor.inicio(nombre_torneo, liNumGames) self.inicio() xjugar = PantallaTorneos.unTorneo(self.pantalla, nombre_torneo) self.reiniciar()