mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
15 lines
234 B
C++
15 lines
234 B
C++
#pragma once
|
|
|
|
class Color
|
|
{
|
|
public:
|
|
Color(int r, int g, int b, int a)
|
|
{
|
|
_color[0] = (unsigned char)r;
|
|
_color[1] = (unsigned char)g;
|
|
_color[2] = (unsigned char)b;
|
|
_color[3] = (unsigned char)a;
|
|
}
|
|
unsigned char _color[4];
|
|
};
|