OK setCharColor__14JUTDirectPrintFQ28JUtility6TColor

This commit is contained in:
Julgodis
2021-09-25 23:44:41 +02:00
parent 4073df7b4f
commit 5f5e41ccf6
2 changed files with 8 additions and 7 deletions
+5
View File
@@ -31,6 +31,11 @@ public:
void set(u32 u32Color) { *(u32*)&mColor = u32Color; }
void set(_GXColor gxColor) { mColor = gxColor; }
u8 R() const { return mColor.r; }
u8 G() const { return mColor.g; }
u8 B() const { return mColor.b; }
u8 A() const { return mColor.a; }
private:
_GXColor mColor;
};