2023-06-11 21:03:54 -04:00
|
|
|
#ifndef LEGOBACKGROUNDCOLOR_H
|
|
|
|
#define LEGOBACKGROUNDCOLOR_H
|
2023-07-02 13:17:15 -04:00
|
|
|
|
2023-08-03 20:13:41 -04:00
|
|
|
#include "mxvariable.h"
|
2023-07-02 02:53:54 -04:00
|
|
|
|
2023-09-29 16:38:08 -04:00
|
|
|
// VTABLE 0x100d74a8
|
|
|
|
// SIZE 0x30
|
2023-08-03 20:13:41 -04:00
|
|
|
class LegoBackgroundColor : public MxVariable
|
2023-06-11 21:03:54 -04:00
|
|
|
{
|
|
|
|
public:
|
2023-08-03 20:13:41 -04:00
|
|
|
__declspec(dllexport) LegoBackgroundColor(const char *p_key, const char *p_value);
|
2023-09-29 16:38:08 -04:00
|
|
|
virtual void SetValue(const char *p_colorString) override;
|
2023-07-02 13:17:15 -04:00
|
|
|
|
|
|
|
private:
|
2023-06-30 19:33:59 -04:00
|
|
|
float h;
|
|
|
|
float s;
|
|
|
|
float v;
|
2023-06-11 21:03:54 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LEGOBACKGROUNDCOLOR_H
|