19 lines
289 B
C
19 lines
289 B
C
|
|
||
|
#ifndef TC_LOCATION_H
|
||
|
#define TC_LOCATION_H
|
||
|
|
||
|
#include "world.h"
|
||
|
|
||
|
typedef struct tc_location
|
||
|
{
|
||
|
tc_world_s *world;
|
||
|
tc_vec3_s position;
|
||
|
tc_vec3_s rotation;
|
||
|
|
||
|
} tc_location_s;
|
||
|
|
||
|
tc_location_s tc_zero_location();
|
||
|
|
||
|
#endif // TC_LOCATION_H
|
||
|
|