aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/game.h
diff options
context:
space:
mode:
authorStrangerke2012-09-02 10:34:11 +0200
committerStrangerke2012-09-02 10:34:11 +0200
commitc737e6429866f18638a6b61103e4e1c7095407e6 (patch)
treef918ca5d96bd02394713f0e37c82eefa23adda90 /engines/tony/game.h
parent1f41e5573175fb712e829a9c72b3e4f75afa8fdf (diff)
downloadscummvm-rg350-c737e6429866f18638a6b61103e4e1c7095407e6.tar.gz
scummvm-rg350-c737e6429866f18638a6b61103e4e1c7095407e6.tar.bz2
scummvm-rg350-c737e6429866f18638a6b61103e4e1c7095407e6.zip
TONY: Move code from .h to .cpp files
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 {