aboutsummaryrefslogtreecommitdiff
path: root/engines/teenagent/font.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/teenagent/font.h')
-rw-r--r--engines/teenagent/font.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/teenagent/font.h b/engines/teenagent/font.h
index 6961c21676..e08a3513af 100644
--- a/engines/teenagent/font.h
+++ b/engines/teenagent/font.h
@@ -29,13 +29,14 @@
namespace TeenAgent {
+class Pack;
class Font {
public:
byte grid_color, shadow_color;
byte height, width_pack;
Font();
- void load(int id);
+ void load(const Pack &pack, int id);
uint render(Graphics::Surface *surface, int x, int y, const Common::String &str, byte color, bool grid = false);
uint render(Graphics::Surface *surface, int x, int y, char c, byte color);
static void grid(Graphics::Surface *surface, int x, int y, int w, int h, byte color);