prime/include/Kyoto/Text/CTextColor.hpp
Phillip Stephens 4e754e9163 Minor fixes, start CTextParser
Former-commit-id: e39a8e4c47d5d09c8aa322c4a6532819258c83e1
2022-09-29 21:24:13 -07:00

17 lines
264 B
C++

#ifndef __CTEXTCOLOR_HPP__
#define __CTEXTCOLOR_HPP__
#include <types.h>
class CTextColor {
public:
CTextColor(uchar r, uchar g, uchar b, uchar a)
: mR(r), mG(g), mB(b), mA(a) {}
private:
uchar mR;
uchar mG;
uchar mB;
uchar mA;
};
#endif