Package editor.screen

Examples of editor.screen.ListTileSetScreen


    private void init(final int width, final int height) {
        initTileSetList();
        currentLayer = 1;
        currentBloc = tilesetList.get(0).getSubimage(0, 0, GeneralConstant.BLOC_WIDTH, GeneralConstant.BLOC_HEIGHT);
        guiModel.setLeftPanel(new MapPanel(this), new Dimension(width * GeneralConstant.BLOC_WIDTH, height * GeneralConstant.BLOC_HEIGHT));
        guiModel.setRightPanel(new ListTileSetScreen(this));

        if (config == null) {
            config = new MapConfig();
        }
        config.setBackground(background);
View Full Code Here

TOP

Related Classes of editor.screen.ListTileSetScreen

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.