diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/glfont.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/glfont.h b/include/glfont.h index cbff848..c1f7df9 100644 --- a/include/glfont.h +++ b/include/glfont.h @@ -16,6 +16,8 @@ namespace mogltk { void putcursor(int, int); void putentry(Uint16, Color = Color(255, 255, 255, 255)); void newline(void); + int printf(const String &, ...); + void setcolor(Color); private: Uint8 * sizes; @@ -25,6 +27,7 @@ namespace mogltk { Uint16 * corresp; void Bind(int); int cx, cy, ox; + Color textcolor; }; }; |