diff options
author | johndoe123 | 2015-11-24 00:10:10 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2018-07-20 06:43:33 +0000 |
commit | fa17f684da1da7fded805746b75c454502ffe683 (patch) | |
tree | 1e668515abccf6455299a5b9fbadc2c5b6affd98 /engines/illusions/resources/fontresource.h | |
parent | 09bbb482a8ccdfb8e36128d40364900b99aa2a13 (diff) | |
download | scummvm-rg350-fa17f684da1da7fded805746b75c454502ffe683.tar.gz scummvm-rg350-fa17f684da1da7fded805746b75c454502ffe683.tar.bz2 scummvm-rg350-fa17f684da1da7fded805746b75c454502ffe683.zip |
ILLUSIONS: DUCKMAN: Start implementing the menu system
Still work-in-progress, missing functionality and buggy
Maybe needs some work for BBDOU where this isn't implemented yet.
Diffstat (limited to 'engines/illusions/resources/fontresource.h')
-rw-r--r-- | engines/illusions/resources/fontresource.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/illusions/resources/fontresource.h b/engines/illusions/resources/fontresource.h index e0291452df..fa758bc4f1 100644 --- a/engines/illusions/resources/fontresource.h +++ b/engines/illusions/resources/fontresource.h @@ -65,6 +65,8 @@ public: void load(Resource *resource); CharInfo *getCharInfo(uint16 c); int16 getColorIndex() const { return _colorIndex; } + int16 getCharHeight() const { return _charHeight; } + int16 getLineIncr() const { return _lineIncr; } public: uint32 _totalSize; int16 _charHeight; |