isle/LEGO1/mxbackgroundcolor.h

19 lines
413 B
C
Raw Normal View History

2023-06-24 13:38:10 -04:00
#ifndef MXBACKGROUNDCOLOR_H
#define MXACKGROUNDCOLOR_H
#include "mxstring.h"
#include "mxcore.h"
class MxBackgroundColor
{
public:
__declspec(dllexport) MxBackgroundColor(const char *, const char *);
MxBackgroundColor(){}
virtual MxString* GetColorString();
virtual void SetColorString(const char* colorString);
protected:
MxString m_name;
MxString m_colorString;
};
#endif // MXBACKGROUNDCOLOR_H