2023-06-28 11:15:42 -04:00
|
|
|
#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() {}
|
2023-06-28 11:22:35 -04:00
|
|
|
virtual MxString *GetString();
|
|
|
|
virtual void SetString(const char *colorString);
|
2023-06-28 11:15:42 -04:00
|
|
|
virtual ~MxStringVariable();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
MxString m_name;
|
2023-06-28 11:22:35 -04:00
|
|
|
MxString m_string;
|
2023-06-28 11:15:42 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MXSTRINGVARIABLE_H
|