diff options
Diffstat (limited to 'engines/wintermute/Base/scriptables/SXFile.h')
-rw-r--r-- | engines/wintermute/Base/scriptables/SXFile.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/wintermute/Base/scriptables/SXFile.h b/engines/wintermute/Base/scriptables/SXFile.h index 8c37127f7b..d36f8ec3ae 100644 --- a/engines/wintermute/Base/scriptables/SXFile.h +++ b/engines/wintermute/Base/scriptables/SXFile.h @@ -40,10 +40,10 @@ class CBFile; class CSXFile : public CBScriptable {
public:
DECLARE_PERSISTENT(CSXFile, CBScriptable)
- CScValue *ScGetProperty(const char *Name);
- HRESULT ScSetProperty(const char *Name, CScValue *Value);
- HRESULT ScCallMethod(CScScript *Script, CScStack *Stack, CScStack *ThisStack, const char *Name);
- const char *ScToString();
+ CScValue *scGetProperty(const char *Name);
+ HRESULT scSetProperty(const char *Name, CScValue *Value);
+ HRESULT scCallMethod(CScScript *Script, CScStack *Stack, CScStack *ThisStack, const char *Name);
+ const char *scToString();
CSXFile(CBGame *inGame, CScStack *Stack);
virtual ~CSXFile();
private:
|