aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/text.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/dm/text.h')
-rw-r--r--engines/dm/text.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/engines/dm/text.h b/engines/dm/text.h
new file mode 100644
index 0000000000..7f57525012
--- /dev/null
+++ b/engines/dm/text.h
@@ -0,0 +1,20 @@
+#ifndef DM_TEXT_H
+#define DM_TEXT_H
+
+#include "dm.h"
+#include "gfx.h"
+
+namespace DM {
+
+class TextMan {
+ DMEngine *_vm;
+public:
+ TextMan(DMEngine *vm);
+ void printTextToBitmap(byte *destBitmap, uint16 destPixelWidth, uint16 destX, uint16 destY,
+ Color textColor, Color bgColor, char *text, uint16 destHeight, Viewport &viewport = gDefultViewPort); // @ F0040_TEXT_Print
+ void printTextToScreen(uint16 destX, uint16 destY, Color textColor, Color bgColor, char *text, Viewport &viewport = gDefultViewPort);
+};
+
+}
+
+#endif