sysdis-project/global/plane.h

18 lines
192 B
C
Raw Normal View History

2017-04-01 15:01:36 +00:00
#define ALTMAX 20000
#define ALTMIN 0
#define VITMAX 1000
#define VITMIN 200
2017-04-06 10:01:18 +00:00
#define PAUSE 2
2017-04-01 15:01:36 +00:00
2017-04-06 10:01:18 +00:00
struct coord {
2017-04-01 15:01:36 +00:00
int x;
int y;
2017-04-06 10:01:18 +00:00
int z;
2017-04-01 15:01:36 +00:00
};
struct deplacement {
int cap;
int vitesse;
};