diff options
author | pixel <pixel> | 2002-12-17 01:14:52 +0000 |
---|---|---|
committer | pixel <pixel> | 2002-12-17 01:14:52 +0000 |
commit | c329122f425342ac620696b40f7421753f70a8b6 (patch) | |
tree | cdaa1f94b60b27ead86246f0fe4b86317e2e3b62 /include | |
parent | f0981aa6b09e67ec57b7cb92421513415292e97f (diff) |
Woo, printf working.
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; }; }; |