]> git.tdb.fi Git - r2c2.git/blob - source/3d/misc.h
Initial revision
[r2c2.git] / source / 3d / misc.h
1 #ifndef MARKLIN3D_MISC_H_
2 #define MARKLIN3D_MISC_H_
3
4 namespace Marklin {
5
6 struct Color
7 {
8         float r, g, b;
9
10         Color(float r_, float g_, float b_): r(r_), g(g_), b(b_) { }
11 };
12
13 } // namespace Marklin
14
15 #endif