Q_HumainVsRandomIA.py 251 B

1234567
  1. from Outils.Moteur_de_jeu import Partie
  2. from Outils.Moteur_de_jeu.Partie import *
  3. joueurA = Humain("Humain")
  4. joueurB = IA_random("I.A. aleatoire")
  5. Global.partie = Partie(joueurA, joueurB, True, Partie.DOSSIER_STANDARD, True)
  6. Global.partie.demarrer()