Rename SimpleText -> GLText
This commit is contained in:
@@ -6,13 +6,13 @@ import org.lwjgl.util.Renderable;
|
|||||||
|
|
||||||
import ru.dmitriymx.lwjgl.tools.Tessellator;
|
import ru.dmitriymx.lwjgl.tools.Tessellator;
|
||||||
|
|
||||||
public class SimpleText implements Renderable {
|
public class GLText implements Renderable {
|
||||||
private Tessellator tess = Tessellator.getInstance();
|
private Tessellator tess = Tessellator.getInstance();
|
||||||
private FontEngine engine;
|
private FontEngine engine;
|
||||||
private char[] chars;
|
private char[] chars;
|
||||||
private float[] color4f = new float[] { 1f, 1f, 1f, 1f };
|
private float[] color4f = new float[] { 1f, 1f, 1f, 1f };
|
||||||
|
|
||||||
public SimpleText(String string, FontEngine engine) {
|
public GLText(String string, FontEngine engine) {
|
||||||
this.engine = engine;
|
this.engine = engine;
|
||||||
setString(string);
|
setString(string);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user