isle/LEGO1/legobackgroundcolor.h

19 lines
398 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"
#include "mxbackgroundcolor.h"
class LegoBackgroundColor : public MxBackgroundColor
{
public:
__declspec(dllexport) LegoBackgroundColor(const char *, const char *);
2023-06-25 10:03:14 -04:00
void SetColorString(const char *colorString);
protected:
float b;
float g;
float r;
};
#endif // LEGOBACKGROUNDCOLOR_H