isle/LEGO1/legobackgroundcolor.h

20 lines
396 B
C
Raw Normal View History

#ifndef LEGOBACKGROUNDCOLOR_H
#define LEGOBACKGROUNDCOLOR_H
#include "mxvariable.h"
// VTABLE 0x100d74a8
// SIZE 0x30
2023-10-24 19:38:27 -04:00
class LegoBackgroundColor : public MxVariable {
public:
2023-10-24 19:38:27 -04:00
__declspec(dllexport) LegoBackgroundColor(const char* p_key, const char* p_value);
virtual void SetValue(const char* p_colorString) override;
private:
2023-10-24 19:38:27 -04:00
float h;
float s;
float v;
};
#endif // LEGOBACKGROUNDCOLOR_H