| 61 | void setRGB(const TColor &other) { setRGB(other.r, other.g, other.b); } |
| 62 | |
| 63 | void setRGBA(const TColor &other) |
| 64 | { |
| 65 | r = other.r; |
| 66 | g = other.g; |
| 67 | b = other.b; |
| 68 | a = other.a; |
| 69 | } |
| 70 | |
| 71 | // fabricated. but helped solve regswaps in a function |
| 72 | void setRGBA(const TColor &RGB, u8 _a) |