Advertisement
LImer12

Untitled

Feb 19th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. CColor()
  2. {
  3. RGBA[0] = 255;
  4. RGBA[1] = 255;
  5. RGBA[2] = 255;
  6. RGBA[3] = 255;
  7. }
  8. CColor(int r, int g, int b, int a = 255)
  9. {
  10. RGBA[0] = r;
  11. RGBA[1] = g;
  12. RGBA[2] = b;
  13. RGBA[3] = a;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement