Examples of fabriqueMotSecret()


Examples of be.steformations.javabc.pendu.JoueurMaitre.fabriqueMotSecret()

public class Pendu {

  public static void main(String[] args) {
    JoueurMaitre maitre = new JoueurMaitreConsoleImpl();
    Joueur joueur = new JoueurConsoleImpl();
    Potence jeu = new PotenceImpl(maitre.fabriqueMotSecret());
    while(!jeu.isGagne() && !jeu.isPerdu()){
      try {
        jeu.verifieLettre(joueur.jouer(jeu));
      } catch (LettreDejaEntreeException e) {
        System.out.println("Lettre déjà entrée");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.