blob: 91dd3b44126fac3e02543ec7c05cce94fb261777 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef POKEREVO_MATH_H
#define POKEREVO_MATH_H
#ifdef __cplusplus
extern "C" {
#endif
double atan2(double y, double x);
double tan(double x);
double acos(double);
double sqrt(double);
#ifdef __cplusplus
}
#endif
#endif //POKEREVO_MATH_H
|