use of eidolons.swing.components.panels.page.small.DC_PagedBuffPanel in project Eidolons by IDemiurge.
the class HeroPanel method init.
private void init() {
xpBar = new SpecialValueBar(false, PARAMS.XP);
xpBar.setObj(hero);
integrityBar = new SpecialValueBar(true, PARAMS.INTEGRITY);
integrityBar.setObj(hero);
values = new ValueIconPanel(hero);
infoPanel = new DC_PagedInfoPanel(hero);
buffPanel = new DC_PagedBuffPanel();
buffPanel.setObj(hero);
itemPanel = new DC_ItemPanel(hero.getGame(), true);
itemPanel.setObj(hero);
lowerPanel = new DC_PagedInfoPanel(hero);
header = new HeroHeader(hero, this);
comps = new G_Component[] { header, values, buffPanel, infoPanel, lowerPanel };
}
Aggregations