diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/glfont.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/glfont.h b/include/glfont.h index c1f7df9..d1ba60c 100644 --- a/include/glfont.h +++ b/include/glfont.h @@ -15,19 +15,22 @@ namespace mogltk { void drawentry(Uint16, int, int, Color = Color(255, 255, 255, 255)); void putcursor(int, int); void putentry(Uint16, Color = Color(255, 255, 255, 255)); + void putchar(char, Color = Color(255, 255, 255, 255)); void newline(void); int printf(const String &, ...); void setcolor(Color); + void setshadow(int); private: Uint8 * sizes; Uint16 nbentries, nbcT, nbT; - Uint8 flags, maxX, maxY, nbcU, nbcV; + Uint8 flags, maxX, maxY, nbcU, nbcV, base, inter; texture ** fonttex; Uint16 * corresp; void Bind(int); int cx, cy, ox; Color textcolor; + int shadow; }; }; |