aboutsummaryrefslogtreecommitdiff
path: root/engines/made/graphics.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/made/graphics.h')
-rw-r--r--engines/made/graphics.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/made/graphics.h b/engines/made/graphics.h
index 1a5cf72677..bf5ec288ff 100644
--- a/engines/made/graphics.h
+++ b/engines/made/graphics.h
@@ -37,6 +37,9 @@ class ValueReader {
public:
ValueReader(byte *source, bool nibbleMode) : _buffer(source), _nibbleBuf(0), _nibbleMode(nibbleMode), _nibbleSwitch(false) {}
byte readPixel();
+ uint16 readUint16();
+ uint32 readUint32();
+ void resetNibbleSwitch();
protected:
byte _nibbleBuf;
bool _nibbleMode, _nibbleSwitch;