33 lines
446 B
C
33 lines
446 B
C
#ifndef _PLANE_H_
|
|
#define _PLANE_H_
|
|
|
|
|
|
#include <time.h>
|
|
#include <math.h>
|
|
|
|
#include "lib/header.h"
|
|
#include "lib/network/udp/client.h"
|
|
#include "lib/network/tcp/client.h"
|
|
|
|
|
|
|
|
#define ALTMAX 20000
|
|
#define ALTMIN 0
|
|
|
|
#define VITMAX 1000
|
|
#define VITMIN 200
|
|
|
|
#define PAUSE 2
|
|
|
|
struct coord {
|
|
int x;
|
|
int y;
|
|
int z;
|
|
};
|
|
|
|
struct control {
|
|
int cap;
|
|
int speed;
|
|
};
|
|
|
|
#endif |