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

org.jglfont.impl.format.angelcode.AngelCodeLine Maven / Gradle / Ivy

Go to download

Nifty GUI is a Java Library that supports the building of interactive user interfaces for games or similar applications. It utilizes OpenGL for rendering and it can be easily integrated into many rendering systems. The configuration of the GUI is stored in xml files with little supporting Java code. In short Nifty helps you to layout stuff, display it in a cool way and interact with it :)

The newest version!
package org.jglfont.impl.format.angelcode;

import org.jglfont.impl.format.JGLAbstractFontData;

/**
 * A Line interface implementation handles exactly one line type
 * from the Angelcode font file and extracts the data of the line
 * into the given JGLAbstractFontData.
 * @author void
 */
public interface AngelCodeLine {
  /**
   * Take the line which represents the current line with all data
   * split into key/value types and fill the corresponding properties
   * of the given JGLAbstractFontData font.
   * @param line the line
   * @param font the font
   */
  boolean process(AngelCodeLineData line, JGLAbstractFontData font);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy