diff options
Diffstat (limited to 'src/gizmo/gizmo.h')
-rw-r--r-- | src/gizmo/gizmo.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/gizmo/gizmo.h b/src/gizmo/gizmo.h new file mode 100644 index 0000000..9e416d0 --- /dev/null +++ b/src/gizmo/gizmo.h @@ -0,0 +1,17 @@ +#ifndef _SOFTSHADEROOM_GIZMO_H_ +#define _SOFTSHADEROOM_GIZMO_H_ + +#include "../math/math.h" + +/*gizmos for visualizing*/ + +typedef enum GizmoIcon2d { + ICON2D_LIGHT, + ICON2D_CAMERA, +}GizmoIcon2d; + +void gizmo_icon2d(float x, float y, float z, GizmoIcon2d icon); + + + +#endif
\ No newline at end of file |