mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-29 11:06:05 -05:00
13 lines
353 B
C++
13 lines
353 B
C++
#ifndef LEGOBACKGROUNDCOLOR_H
|
|
#define LEGOBACKGROUNDCOLOR_H
|
|
#include "mxstring.h"
|
|
#include "mxcore.h"
|
|
#include "mxbackgroundcolor.h"
|
|
class LegoBackgroundColor : public MxBackgroundColor
|
|
{
|
|
public:
|
|
__declspec(dllexport) LegoBackgroundColor(const char *, const char *);
|
|
void SetColorString(const char *colorString);
|
|
};
|
|
|
|
#endif // LEGOBACKGROUNDCOLOR_H
|