Package client.views.swing.gameboard

Examples of client.views.swing.gameboard.Game


    public GameView MainView = null;
    private Play play = null; // Model in MVC Architecture

    public GameController(Play play) {
        this.play = play;
        MainView = new Game(this);
        addListenersToModel();
    }
View Full Code Here

TOP

Related Classes of client.views.swing.gameboard.Game

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.