1v13d/src/FxEngine/coord.h

21 lines
274 B
C
Raw Normal View History

2019-07-19 21:55:17 +02:00
#ifndef FE_COORD_H
#define FE_COORD_H
typedef struct FE_position FE_position;
struct FE_position
2019-07-19 21:55:17 +02:00
{
int x,y,z;
2019-07-19 21:55:17 +02:00
};
typedef struct FE_point FE_point;
struct FE_point
{
FE_position real,translated;
};
2019-07-21 20:14:54 +02:00
void FE_calc(const FE_point point);
void FE_set_matrice(void);
2019-07-19 21:55:17 +02:00
#endif