mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
19 lines
413 B
C++
19 lines
413 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;
|
|
|
|
};
|
|
|
|
#endif // MXBACKGROUNDCOLOR_H
|