]> git.tdb.fi Git - r2c2.git/blob - source/3d/utility.h
Make some internal colors darker to match linear color space
[r2c2.git] / source / 3d / utility.h
1 #ifndef R2C2_3D_UTILITY_H_
2 #define R2C2_3D_UTILITY_H_
3
4 namespace R2C2 {
5
6 class Layout3D;
7
8 class Utility3D
9 {
10 protected:
11         Layout3D &layout;
12
13         Utility3D(Layout3D &);
14 public:
15         virtual ~Utility3D();
16 };
17
18 } // namespace R2C2
19
20 #endif