Package game.model.fight

Examples of game.model.fight.ListPersoModel


     */
    public FightView(final FightModel model) {
        // Enregistrer le modèle observé
        this.model = model;
        model.addObserver(this);
        final ListPersoModel listPersoModel = model.getListPersoModel();
        // Initialiser la vue des stats des combattants
        statsPerso = new ListPerso(listPersoModel);
       
        final ListActionModel listActionModel = new ListActionModel(listPersoModel);
        actionList = new ListAction(listActionModel);
View Full Code Here

TOP

Related Classes of game.model.fight.ListPersoModel

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.