prosperon/source/engine/gizmo.h

11 lines
102 B
C
Raw Normal View History

2021-11-30 21:29:18 -06:00
#ifndef GIZMO_H
#define GIZMO_H
2022-02-06 10:14:57 -06:00
#include <stdint.h>
struct gizmo {
uint8_t color[3];
};
2021-11-30 21:29:18 -06:00
#endif