Enable displaying text

This commit is contained in:
2021-03-11 09:28:22 +01:00
parent efa43f0eb0
commit f7bed7a045
4 changed files with 28 additions and 24 deletions

View File

@@ -12,13 +12,13 @@ public interface GUI extends Renderable, Disposable {
void drawRectangle(float x, float y, float w, float h);
void fillColor(Color color);
void fillColor(float red, float green, float blue, float alpha);
void strokeColor(float red, float green, float blue, float alpha);
void setFontFace(String fontUid);
void setFontSize(float size);
void putText(float x, float y, CharSequence text);
Color createColor(float red, float green, float blue, float alpha);
}