Package com.threerings.cast.bundle

Examples of com.threerings.cast.bundle.BundledComponentRepository


        _tilemgr = new EditorTileManager(_rmgr, _imgr);

        try {
            _tsrepo = new BundledTileSetRepository(_rmgr, _imgr, "tilesets");
            _tilemgr.setTileSetRepository(_tsrepo);
            _crepo = new BundledComponentRepository(_rmgr, _imgr, "components");
        } catch (IOException e) {
            log.warning("Exception loading tilesets and and icon manager", "Exception", e);
            return;
        }
View Full Code Here


        _imgr = new ImageManager(_rmgr, _frame);
        _tilemgr = new MisoTileManager(_rmgr, _imgr);
        _tilemgr.setTileSetRepository(
            new BundledTileSetRepository(_rmgr, _imgr, "tilesets"));
        _colpos = ColorPository.loadColorPository(_rmgr);
        _crepo = new BundledComponentRepository(_rmgr, _imgr, "components");
        _mesgmgr = new MessageManager("rsrc.i18n");

        _frame = new ViewerFrame(gc);
        _framemgr = FrameManager.newInstance(_frame);
View Full Code Here

TOP

Related Classes of com.threerings.cast.bundle.BundledComponentRepository

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.