isle/LEGO1/mxstringvariable.h

21 lines
444 B
C
Raw Normal View History

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