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

10 lines
119 B
C
Raw Normal View History

2019-07-19 21:55:17 +02:00
#ifndef FE_POS_H
#define FE_POS_H
2019-07-20 16:03:28 +02:00
typedef struct FE_position FE_position;
struct FE_position
2019-07-19 21:55:17 +02:00
{
int x,y,z;
};
#endif