2023-06-11 21:03:54 -04:00
|
|
|
#ifndef LEGOBACKGROUNDCOLOR_H
|
|
|
|
#define LEGOBACKGROUNDCOLOR_H
|
2023-06-24 13:38:10 -04:00
|
|
|
#include "mxstring.h"
|
|
|
|
#include "mxcore.h"
|
2023-06-28 11:15:42 -04:00
|
|
|
#include "MxStringVariable.h"
|
|
|
|
class LegoBackgroundColor : public MxStringVariable
|
2023-06-11 21:03:54 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
__declspec(dllexport) LegoBackgroundColor(const char *, const char *);
|
2023-06-25 10:03:14 -04:00
|
|
|
void SetColorString(const char *colorString);
|
2023-06-28 11:15:42 -04:00
|
|
|
protected:
|
|
|
|
float h;
|
|
|
|
float s;
|
|
|
|
float v;
|
2023-06-11 21:03:54 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LEGOBACKGROUNDCOLOR_H
|