isle/LEGO1/mxbackgroundcolor.h
2023-06-27 18:35:58 +03:00

22 lines
477 B
C++

#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);
virtual ~MxBackgroundColor();
protected:
MxString m_name;
MxString m_colorString;
float h;
float s;
float v;
};
#endif // MXBACKGROUNDCOLOR_H