aboutsummaryrefslogtreecommitdiff
path: root/engines/teenagent/font.h
diff options
context:
space:
mode:
authorMax Horn2009-09-15 08:54:06 +0000
committerMax Horn2009-09-15 08:54:06 +0000
commita8e5df433f5ea5c51c612a8962894add46f239e8 (patch)
treeacd245985f82e1d105f3e1106befbd6af0b0b432 /engines/teenagent/font.h
parent9369d6b772f0a97ffca7639ba22fa07eee03549a (diff)
downloadscummvm-rg350-a8e5df433f5ea5c51c612a8962894add46f239e8.tar.gz
scummvm-rg350-a8e5df433f5ea5c51c612a8962894add46f239e8.tar.bz2
scummvm-rg350-a8e5df433f5ea5c51c612a8962894add46f239e8.zip
TEEN: More code formatting & whitespace changes (automatically generated with astyle)
svn-id: r44101
Diffstat (limited to 'engines/teenagent/font.h')
-rw-r--r--engines/teenagent/font.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/teenagent/font.h b/engines/teenagent/font.h
index b18defefc3..cd2287a7b7 100644
--- a/engines/teenagent/font.h
+++ b/engines/teenagent/font.h
@@ -30,18 +30,18 @@
namespace TeenAgent {
class Font {
-public:
+public:
byte grid_color, color, shadow_color;
byte height, width_pack;
-
+
Font();
void load(int id);
uint render(Graphics::Surface *surface, int x, int y, const Common::String &str, bool grid = false);
uint render(Graphics::Surface *surface, int x, int y, char c);
static void grid(Graphics::Surface *surface, int x, int y, int w, int h, byte color);
-
+
~Font();
-private:
+private:
byte *data;
};