Package pdp.scrabble.ihm.action.impl

Examples of pdp.scrabble.ihm.action.impl.OptionsActionImpl


  public OptionsPanel(MainFrame mainFrame, GameEnvironment game) {
    super();
    this.mainFrame = mainFrame;
    this.game = game;
    this.modele = game.engine().getStatsModel();
    this.action = new OptionsActionImpl(mainFrame, game, this, this.modele);
    this.panels = new TreeMap<String, JPanel>();
    this.buttons = new TreeMap<String, JButton>();

    this.setPreferredSize(new Dimension(400, 600));
    this.setLayout(new GridLayout(2, 1));
View Full Code Here

TOP

Related Classes of pdp.scrabble.ihm.action.impl.OptionsActionImpl

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.