Package monopoly.model.gamefield

Examples of monopoly.model.gamefield.GameField


     * Задать новую игру.
     */
    public GameModel() {
        _dice = new Dice();
        _bank = new Bank();
        _field = new GameField();

        _availableColors = new ArrayList<Color>();
        _availableColors.add(HTMLColors.red);
        _availableColors.add(HTMLColors.blue);
        _availableColors.add(HTMLColors.green);
View Full Code Here

TOP

Related Classes of monopoly.model.gamefield.GameField

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.