mirror of
https://github.com/isledecomp/isle.git
synced 2024-12-02 20:37:37 -05:00
20 lines
445 B
C++
20 lines
445 B
C++
#ifndef MXBACKGROUNDCOLOR_H
|
|
#define MXACKGROUNDCOLOR_H
|
|
#include "mxstring.h"
|
|
#include "mxcore.h"
|
|
class MxBackgroundColor
|
|
{
|
|
public:
|
|
__declspec(dllexport) MxBackgroundColor(const char *, const char *);
|
|
MxBackgroundColor(){}
|
|
virtual MxString* GetColorString();
|
|
virtual void SetColorString(const char* colorString);
|
|
protected:
|
|
MxString m_name;
|
|
MxString m_colorString;
|
|
float r;
|
|
float g;
|
|
float b;
|
|
};
|
|
|
|
#endif // MXBACKGROUNDCOLOR_H
|