]> git.tdb.fi Git - poefilter.git/blob - source/color.cpp
a7d8330642dac57814c2ca083c2b117f5e91dd37
[poefilter.git] / source / color.cpp
1 #include "color.h"
2
3 Color::Color():
4         defined(false),
5         r(0),
6         g(0),
7         b(0)
8 { }
9
10 Color::Color(unsigned r_, unsigned g_, unsigned b_):
11         defined(true),
12         r(r_),
13         g(g_),
14         b(b_)
15 { }