diff options
Diffstat (limited to 'engines/wintermute')
-rw-r--r-- | engines/wintermute/scriptables/ScValue.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/wintermute/scriptables/ScValue.h b/engines/wintermute/scriptables/ScValue.h index 92ee09f0c5..5d10e9ff12 100644 --- a/engines/wintermute/scriptables/ScValue.h +++ b/engines/wintermute/scriptables/ScValue.h @@ -89,10 +89,12 @@ public: CScValue *GetProp(const char *Name);
CBScriptable *_valNative;
CScValue *_valRef;
+protected:
bool _valBool;
int _valInt;
double _valFloat;
char *_valString;
+public:
TValType _type;
CScValue(CBGame *inGame);
CScValue(CBGame *inGame, bool Val);
|