isle/LEGO1/legobackgroundcolor.h

18 lines
395 B
C
Raw Normal View History

#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
{
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;
};
#endif // LEGOBACKGROUNDCOLOR_H