All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.lessvoid.nifty.slick2d.render.font.AngelCodeSlickRenderFont Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
package de.lessvoid.nifty.slick2d.render.font;

import org.newdawn.slick.AngelCodeFont;

import javax.annotation.Nonnull;

/**
 * This is the render font implementation that uses an angel code font to render the text.
 *
 * @author Martin Karing <[email protected]>
 */
public class AngelCodeSlickRenderFont extends AbstractSlickRenderFont {
  /**
   * Create the render font using a already loaded angel code font.
   *
   * @param font the font this render font is supposed to encapsulate
   * @throws SlickLoadFontException in case loading the font fails
   */
  @SuppressWarnings("TypeMayBeWeakened")
  public AngelCodeSlickRenderFont(@Nonnull final AngelCodeFont font) throws SlickLoadFontException {
    super(font);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy