diff options
author | Einar Johan Trøan Sømåen | 2012-06-13 22:37:13 +0200 |
---|---|---|
committer | Einar Johan Trøan Sømåen | 2012-06-13 22:37:13 +0200 |
commit | 84837f4bae998d8067f809531533e4f5afeb28be (patch) | |
tree | ee0efcb0507a80a657bf79f897116aef1c3e5117 /engines/wintermute/Base/scriptables/SXDate.h | |
parent | fb7423f47ceca492aa84ce2a8baa2725fe6056ea (diff) | |
download | scummvm-rg350-84837f4bae998d8067f809531533e4f5afeb28be.tar.gz scummvm-rg350-84837f4bae998d8067f809531533e4f5afeb28be.tar.bz2 scummvm-rg350-84837f4bae998d8067f809531533e4f5afeb28be.zip |
WINTERMUTE: Implement SXDate
Diffstat (limited to 'engines/wintermute/Base/scriptables/SXDate.h')
-rw-r--r-- | engines/wintermute/Base/scriptables/SXDate.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/wintermute/Base/scriptables/SXDate.h b/engines/wintermute/Base/scriptables/SXDate.h index 7d4d29af93..95334d0196 100644 --- a/engines/wintermute/Base/scriptables/SXDate.h +++ b/engines/wintermute/Base/scriptables/SXDate.h @@ -29,7 +29,7 @@ #ifndef WINTERMUTE_SXDATE_H
#define WINTERMUTE_SXDATE_H
-
+#include "common/system.h"
#include "engines/wintermute/Base/BScriptable.h"
namespace WinterMute {
@@ -45,7 +45,9 @@ public: HRESULT ScCallMethod(CScScript *Script, CScStack *Stack, CScStack *ThisStack, const char *Name);
const char *ScToString();
char *_string;
- //struct tm _tm; // TODO!
+ TimeDate _tm;
+private:
+ Common::String _strRep;
};
} // end of namespace WinterMute
|