24 lines
352 B
C
24 lines
352 B
C
|
|
||
|
#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
|
||
|
|