diff options
Diffstat (limited to 'include/Color.h')
-rw-r--r-- | include/Color.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/Color.h b/include/Color.h index e9040b5..5b2ec06 100644 --- a/include/Color.h +++ b/include/Color.h @@ -2,6 +2,7 @@ #define __COLOR_H__ struct Color { + Color() : R(255), G(255), B(255), A(255) { } Color(unsigned char aR, unsigned char aG, unsigned char aB, unsigned char aA = 255) : R(aR), G(aG), B(aB), A(aA) { } Color(const Color & c) : R(c.R), G(c.G), B(c.B), A(c.A) { } |