prime/include/Kyoto/Text/CTextColor.hpp

18 lines
253 B
C++
Raw Normal View History

#ifndef _CTEXTCOLOR
#define _CTEXTCOLOR
2022-09-30 04:24:13 +00:00
#include <types.h>
class CTextColor {
public:
CTextColor(uchar r, uchar g, uchar b, uchar a) : mR(r), mG(g), mB(b), mA(a) {}
2022-09-30 04:24:13 +00:00
private:
uchar mR;
uchar mG;
uchar mB;
uchar mA;
2022-09-30 04:24:13 +00:00
};
#endif // _CTEXTCOLOR