11 lines
102 B
C
Executable file
11 lines
102 B
C
Executable file
#ifndef GIZMO_H
|
|
#define GIZMO_H
|
|
|
|
#include <stdint.h>
|
|
|
|
struct gizmo {
|
|
uint8_t color[3];
|
|
};
|
|
|
|
#endif
|