2023-10-14 13:04:52 +00:00
|
|
|
|
|
|
|
#ifndef TC_LOCATION_H
|
|
|
|
#define TC_LOCATION_H
|
|
|
|
|
2023-10-15 08:07:33 +00:00
|
|
|
#include <world.h>
|
2023-10-14 13:04:52 +00:00
|
|
|
|
|
|
|
typedef struct tc_location
|
|
|
|
{
|
|
|
|
tc_world_s *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
|
|
|
|
|