001 package net.minecraft.src; 002 003 import cpw.mods.fml.common.Side; 004 import cpw.mods.fml.common.asm.SideOnly; 005 006 @SideOnly(Side.CLIENT) 007 public interface IBossDisplayData 008 { 009 int getMaxHealth(); 010 011 /** 012 * Returns the health points of the dragon. 013 */ 014 int getDragonHealth(); 015 016 /** 017 * Gets the username of the entity. 018 */ 019 String getEntityName(); 020 }