isle/LEGO1/legobackgroundcolor.h
Christian Semmler c4a7cbc0e7
style fixes
2023-07-02 12:47:34 +02:00

21 lines
417 B
C++

#ifndef LEGOBACKGROUNDCOLOR_H
#define LEGOBACKGROUNDCOLOR_H
#include "mxstring.h"
#include "mxcore.h"
#include "mxstringvariable.h"
class LegoBackgroundColor : public MxStringVariable
{
public:
__declspec(dllexport) LegoBackgroundColor(const char *p_name, const char *p_colorString);
void SetColorString(const char *p_colorString);
private:
float h;
float s;
float v;
};
#endif // LEGOBACKGROUNDCOLOR_H