summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/Color.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/Color.h b/include/Color.h
index ed68eee..e9040b5 100644
--- a/include/Color.h
+++ b/include/Color.h
@@ -5,6 +5,9 @@ struct Color {
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) { }
+ bool operator==(const Color & c) const {
+ return (R == c.R) && (G == c.G) && (B == c.B) && (A == c.A);
+ }
unsigned char R, G, B, A;
};