Package client

Source Code of client.Scrabble

package client;

import client.controller.GameController;
import client.controller.MenuController;
import client.model.Play;

/**
*
* @author Romain <ro.foncier@gmail.com>
*/
public class Scrabble {

    public static void main(String[] args) {
        Play play = new Play(args);
        GameController gameController = new GameController(play);
        MenuController menuController = new MenuController(play);
        gameController.addMenuToView(menuController.getMenu());
        gameController.displayViews();
    }
}
TOP

Related Classes of client.Scrabble

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.