Package thegame.gui

Examples of thegame.gui.SelectionMenuIconCell


                for (Iterator<XtendedModel> it = FieldGui.getAvailablePlayerModels().iterator(); it.hasNext();) {
                    XtendedModel model = it.next();
                    if (model instanceof XtendedModel) {
                        Sprite spIcon = gui.getModelIconSprite(model);
                        spIcon.setSize(FieldGui.ICONSIZE);
                        character_selection_menu.add(new SelectionMenuIconCell(gui, "", spIcon, new Runnable() {

                            public void run() {
                                int uiplr = player_selection_menu.selectable.getUISelectingPlayer();
                                int UISelectedPlayer = player_selection_menu.getFocusedMenu();
                                if (uiplr < FieldGui.NPLAYERS) {
View Full Code Here

TOP

Related Classes of thegame.gui.SelectionMenuIconCell

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.