Package model

Examples of model.Piece


    myRandom  = new Random();
   
    myDico = new Dico("ressources/dictionnaire");
    myArbitre = new Arbitre(myPlateau, 2, myDico);
   
    p = new Piece();
    p.creerPiece(myRandom.nextInt(7)+1);
    p.currentPosition(0);
   
    np = new Piece();
    np.creerPiece(myRandom.nextInt(7)+1);
    np.currentPosition(0);
 
    /*CONTENEUR PLATEAU*/
   
 
View Full Code Here

TOP

Related Classes of model.Piece

Copyright © 2018 www.massapicom. 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.