Package monopoly

Source Code of monopoly.Monopoly

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package monopoly;

import monopoly.model.game.GameModel;
import monopoly.view.GameView;
import monopoly.сontroller.GameController;

/**
* Определяет игру монополия.
* @author Роман
*/
public class Monopoly {

    /**
     * Товчка входа.
     * @param args аргументы командной строки.
     */
    public static void main(String[] args) {
        GameModel model = new GameModel();
        GameView view = new GameView(model);
        GameController controller = new GameController(model, view);

        view.setVisible(true);
    }
}
TOP

Related Classes of monopoly.Monopoly

TOP
Copyright © 2018 www.massapi.com. 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.