2023-10-14 13:04:52 +00:00
|
|
|
|
|
|
|
#ifndef TC_LOCATION_H
|
|
|
|
#define TC_LOCATION_H
|
|
|
|
|
2023-10-15 09:51:45 +00:00
|
|
|
#include <utility/math.h>
|
2023-10-14 13:04:52 +00:00
|
|
|
|
|
|
|
typedef struct tc_location
|
|
|
|
{
|
2023-10-15 09:51:45 +00:00
|
|
|
void *world;
|
2023-10-15 08:07:33 +00:00
|
|
|
tc_vec3f_s position;
|
|
|
|
tc_vec3f_s rotation;
|
2023-10-14 13:04:52 +00:00
|
|
|
|
|
|
|
} tc_location_s;
|
|
|
|
|
|
|
|
tc_location_s tc_zero_location();
|
|
|
|
|
|
|
|
#endif // TC_LOCATION_H
|
|
|
|
|