use of com.watabou.pixeldungeon.ui.HealthBar in project pixel-dungeon by watabou.
the class IconTitle method createChildren.
@Override
protected void createChildren() {
imIcon = new Image();
add(imIcon);
tfLabel = PixelScene.createMultiline(FONT_SIZE);
tfLabel.hardlight(Window.TITLE_COLOR);
add(tfLabel);
health = new HealthBar();
add(health);
}