Nuitrack  1.11.2
3D Skeleton Tracking Middleware
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Properties Events Groups Pages
Color3.h
1 #ifndef NUITRACK_COLOR3_H_
2 #define NUITRACK_COLOR3_H_
3 
4 namespace tdv
5 {
6 namespace nuitrack
7 {
8 
9 extern "C" {
10 
11 struct Color3
12 {
13  uint8_t blue;
14  uint8_t green;
15  uint8_t red;
16 };
17 
18 }
19 
20 }
21 }
22 
23 #endif /* NUITRACK_COLOR3_H_ */
Definition: Color3.h:11