Package game.model.fight

Examples of game.model.fight.FightModel


        setChanged();
        notifyObservers();
    }

    public void launchFight() {
        final FightModel fightModel = new FightModel(player.getEquipe(), new ArrayList(), new ArrayList(), new ArrayList());
        final FightView fightView = new FightView(fightModel);

        guiModel.setScreen(fightView);
    }
View Full Code Here

TOP

Related Classes of game.model.fight.FightModel

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.