]> git.tdb.fi Git - libs/gltk.git/blob - source/color.h
Change mspparser -> mspdatafile
[libs/gltk.git] / source / color.h
1 #ifndef MSP_GLTK_COLOR_H_
2 #define MSP_GLTK_COLOR_H_
3
4 namespace Msp {
5 namespace GLtk {
6
7 struct Color
8 {
9         float r, g, b;
10
11         Color(): r(1), g(1), b(1) { }
12         Color(float r_, float g_, float b_): r(r_), g(g_), b(b_) { }
13 };
14
15 } // namespace GLtk
16 } // namespace Msp
17
18 #endif