Techneck/code/source-c/utility/location.h

19 lines
289 B
C
Raw Normal View History

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