summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorpixel <pixel>2002-12-21 12:39:15 +0000
committerpixel <pixel>2002-12-21 12:39:15 +0000
commite6dc945aaa53b0739148b5ba4ebf7f8870e64370 (patch)
tree8b1d2e381a69da41eb755268495370b052ed07d7 /include
parentf4b6e956b0853970989fd349af861d81537c1237 (diff)
Commit of the day.
Diffstat (limited to 'include')
-rw-r--r--include/glfont.h5
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;
};
};