Package plugin

Source Code of plugin.ShadowrunCorePlugin

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 shadowrun.gui.general.PanelCharacterInfo;
import shadowrun.map.state.ShadowrunDrawInfo;

public class ShadowrunCorePlugin implements ICorePlugin {

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

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

}
TOP

Related Classes of plugin.ShadowrunCorePlugin

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.