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

de.lessvoid.nifty.slick2d.render.font.DefaultSlickRenderFont 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.Font;

import javax.annotation.Nonnull;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy