Package plugin

Source Code of plugin.PathfinderCorePlugin

package plugin;

import javax.swing.JPanel;

import net.alteiar.campaign.player.gui.centerViews.map.MapEditableInfo;
import net.alteiar.campaign.player.gui.centerViews.map.drawable.DrawFilter;
import net.alteiar.campaign.player.plugin.ICorePlugin;
import pathfinder.gui.general.PanelCharacterInfo;
import pathfinder.map.state.PathfinderDrawInfo;

public class PathfinderCorePlugin implements ICorePlugin {

  @Override
  public JPanel buildSmallCharacterSheet() {
    return new PanelCharacterInfo();
  }

  @Override
  public DrawFilter getDrawInfo(MapEditableInfo mapInfo) {
    return new PathfinderDrawInfo(mapInfo);
  }

}
TOP

Related Classes of plugin.PathfinderCorePlugin

TOP
Copyright © 2018 www.massapi.com. 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.