graphics.drawString(string.getIterator(), att.getLeft(), configuration.getImage().getHeight().intValue() - att.getBottom());
}
}
public void drawDaycounter(int dayCount, SceneConfiguration sceneConfig) {
final DaycounterAttributes att = drawAttributes.getDaycounterAttributes();
if (att.isEnabled()) {
AttributedString string = new AttributedString(String.format(att.getFormatString(), dayCount));
string.addAttribute(TextAttribute.FONT, att.getFont());
string.addAttribute(TextAttribute.FOREGROUND, att.getColor());
graphics.drawString(string.getIterator(), att.getLeft(), configuration.getImage().getHeight().intValue() - att.getBottom());
}
}