aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/tony/game.h')
-rw-r--r--engines/tony/game.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/engines/tony/game.h b/engines/tony/game.h
index 1c955176bf..83a1ddaea1 100644
--- a/engines/tony/game.h
+++ b/engines/tony/game.h
@@ -189,12 +189,8 @@ public:
bool doFrame(const RMPoint &mousePos, bool bLeftClick, bool bRightClick);
virtual void draw(CORO_PARAM, RMGfxTargetBuffer &bigBuf, RMGfxPrimitive *prim);
void addToList(RMGfxTargetBuffer &bigBuf);
- bool isActive() {
- return _bActive;
- }
- void setActiveState(bool bState) {
- _bActive = bState;
- }
+ bool isActive();
+ void setActiveState(bool bState);
};
class RMOptionSlide : public RMGfxTaskSetPrior {
@@ -219,9 +215,7 @@ public:
virtual void draw(CORO_PARAM, RMGfxTargetBuffer &bigBuf, RMGfxPrimitive *prim);
void addToList(RMGfxTargetBuffer &bigBuf);
- int getValue() {
- return _nValue;
- }
+ int getValue();
};
class RMOptionScreen : public RMGfxWoodyBuffer {