Package gui

Examples of gui.GUIWorld


            controllers.add(controller);
        }
    }

    public void addWorld(World world) {
        GUIWorld guiWorld = controllers.get(world.getId()).createGUIWorld(world);
        worldsContainer.addWorld(guiWorld);
        guiWorld.repaint();
    }
View Full Code Here


        TimeEventDispatcher.getInstance().addObserver(this);
    }

    public GUIWorld createGUIWorld(World world) {
        params = world.getParams();
        guiWorld = new GUIWorld(params);
        resetGUIGrid(world);
        return guiWorld;
    }
View Full Code Here

TOP

Related Classes of gui.GUIWorld

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.