Techneck/code/source-c/utility.h

24 lines
352 B
C
Raw Normal View History

2023-10-11 08:10:06 +00:00
#ifndef TC_UTILITY_H
#define TC_UTILITY_H
typedef struct tc_vec3
{
float x;
float y;
float z;
} tc_vec3_s;
typedef struct tc_object
{
uint32_t vbo;
uint32_t vao;
tc_vec3_s position;
tc_vec3_s rotation;
} tc_object_s;
#endif