Package tamagotchi.core

Examples of tamagotchi.core.Compteur


     * Constructeur de la classe, initialise le tamagotchi et se declare evenement courant
     * @param guiModel
     */
    public GameModel(final GUIModel guiModel) {
        this.guiModel = guiModel;
        compteur = new Compteur();
        tamago = new Tamago();
        compteur.addCompteurItem(tamago);
        tamago.addObserver(this);
        EventFactory.setCurrentEvent(this);
    }
View Full Code Here

TOP

Related Classes of tamagotchi.core.Compteur

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.