1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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