Package thegame.gui

Examples of thegame.gui.SelectionMenuCell


        console = new ConsoleInterface(System.out, System.err);
        this.gameInterface = gameInterface;
        this.container = container;
        this.constraints = constraints;
        List<SelectionMenuCell> l = new ArrayList<SelectionMenuCell>();
        l.add(new SelectionMenuCell(this, "restart game", new Runnable() {
            public void run() {
                reset();
            }
        }, null));
        default_menu = new SelectionMenuComponent(this, SCREEN_DEFAULT, l);
View Full Code Here

TOP

Related Classes of thegame.gui.SelectionMenuCell

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.