diff options
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
|