mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
d64a04705c
* lego: fix/match SetColorString * explicitly cast to float to avoid warning * style fixes * remove superfluous includes * Update legobackgroundcolor.cpp
18 lines
375 B
C++
18 lines
375 B
C++
#ifndef LEGOBACKGROUNDCOLOR_H
|
|
#define LEGOBACKGROUNDCOLOR_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
|