]> git.tdb.fi Git - poefilter.git/blob - source/color.h
5ade1808d42467e5514d44e1164797ab3e4f0c2a
[poefilter.git] / source / color.h
1 #ifndef COLOR_H_
2 #define COLOR_H_
3
4 struct Color
5 {
6         bool defined;
7         unsigned r;
8         unsigned g;
9         unsigned b;
10
11         Color();
12         Color(unsigned, unsigned, unsigned);
13 };
14
15 #endif