1v13d/src/FxEngine/math/pos.h

10 lines
119 B
C

#ifndef FE_POS_H
#define FE_POS_H
typedef struct FE_position FE_position;
struct FE_position
{
int x,y,z;
};
#endif