mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-26 09:28:01 -05:00
21 lines
444 B
C
21 lines
444 B
C
|
#ifndef MXSTRINGVARIABLE_H
|
||
|
#define MXSTRINGVARIABLE_H
|
||
|
#include "mxstring.h"
|
||
|
#include "mxcore.h"
|
||
|
//VTABLE: 0x100d74a8
|
||
|
class MxStringVariable
|
||
|
{
|
||
|
public:
|
||
|
__declspec(dllexport) MxStringVariable(const char *, const char *);
|
||
|
MxStringVariable() {}
|
||
|
virtual MxString *GetString();
|
||
|
virtual void SetString(const char *colorString);
|
||
|
virtual ~MxStringVariable();
|
||
|
|
||
|
protected:
|
||
|
MxString m_name;
|
||
|
MxString m_string;
|
||
|
};
|
||
|
|
||
|
#endif // MXSTRINGVARIABLE_H
|