aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/window.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/xeen/window.h')
-rw-r--r--engines/xeen/window.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/engines/xeen/window.h b/engines/xeen/window.h
index 2389065300..b63943f919 100644
--- a/engines/xeen/window.h
+++ b/engines/xeen/window.h
@@ -148,6 +148,14 @@ public:
const char *writeString(const Common::String &s) {
return FontSurface::writeString(s, _innerBounds);
}
+
+ /**
+ * Write a charcter to the window
+ * @param c Character
+ */
+ void writeCharacter(char c) {
+ FontSurface::writeCharacter(c, _innerBounds);
+ }
};
} // End of namespace Xeen