#ifndef TC_UTILITY_H #define TC_UTILITY_H #include #include typedef struct tc_vec3 { float x; float y; float z; } tc_vec3_s; typedef struct tc_vec3i { int32_t x; int32_t y; int32_t z; } tc_vec3i_s; bool tc_vec3i_equ(tc_vec3i_s first, tc_vec3i_s second); typedef struct tc_object { uint32_t vbo; uint32_t vao; tc_vec3_s position; tc_vec3_s rotation; } tc_object_s; #endif