Package pathfinder.gui.mapElement.builder

Examples of pathfinder.gui.mapElement.builder.PanelRectangleBuilder


    // mapElement builder
    mapElementPlugins = new ArrayList<MapElementPlugin>();
    mapElementPlugins.add(new MapElementPlugin(CircleElement.class, null,
        new PanelCircleBuilder(), new PanelCircleEditor()));
    mapElementPlugins.add(new MapElementPlugin(RectangleElement.class,
        null, new PanelRectangleBuilder(), new PanelRectangleEditor()));
    mapElementPlugins.add(new MapElementPlugin(
        PathfinderCharacterElement.class, null,
        new PanelCharacterBuilder(), new PanelCharacterEditor()));
    mapElementPlugins.add(new MapElementPlugin(
        PathfinderMonsterElement.class, null,
View Full Code Here


    // mapElement builder
    ArrayList<MapElementPlugin> mapElementPlugins = new ArrayList<MapElementPlugin>();
    mapElementPlugins.add(new MapElementPlugin(CircleElement.class, null,
        new PanelCircleBuilder(), new PanelCircleEditor()));
    mapElementPlugins.add(new MapElementPlugin(RectangleElement.class,
        null, new PanelRectangleBuilder(), new PanelRectangleEditor()));
    mapElementPlugins.add(new MapElementPlugin(
        PathfinderCharacterElement.class, null,
        new PanelCharacterBuilder(), new PanelCharacterEditor()));
    mapElementPlugins.add(new MapElementPlugin(
        PathfinderMonsterElement.class, null,
View Full Code Here

TOP

Related Classes of pathfinder.gui.mapElement.builder.PanelRectangleBuilder

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.