prime/include/Kyoto/Text/CTextColor.hpp
Luke Street 7f83e1fa03 Standardize include guards, clang-format headers
Former-commit-id: 261ee48bba0546f4620447040b7c3d3034686796
2022-10-09 01:13:17 -04:00

18 lines
253 B
C++

#ifndef _CTEXTCOLOR
#define _CTEXTCOLOR
#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 // _CTEXTCOLOR