Package ds.moteur

Examples of ds.moteur.Moteur


  }
 
  public void initSimu(File fichierTerrain){
    this.ihm.detruireEcranDemarrage();
    this.ihm.initIhm();
    this.moteur = new Moteur();
    this.moteur.init(fichierTerrain);
    this.ihm.getInterfaceGraphique().chargerTerrain(moteur.getScene().getTerrain());
    Thread gb = new GrandeBoucle(this, DUREE);
    gb.start();
  }
View Full Code Here

TOP

Related Classes of ds.moteur.Moteur

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.