* @param g2d
* The graphics to drawn on.
*/
@Override
protected void drawTop(final Graphics2D g2d, final int x, final int y, final int width, final int height) {
NPC npc = (NPC) entity;
super.drawTop(g2d, x, y, width, height);
if (npc.getIdea() != null) {
Sprite sprite = SpriteStore.get().getSprite("data/sprites/ideas/" + npc.getIdea() + ".png");
sprite.draw(g2d, x + (width * 3 / 4), y - 10);
}
}