mirror of
https://github.com/pret/pokerevo.git
synced 2026-08-26 02:34:13 -05:00
18 lines
259 B
C
18 lines
259 B
C
#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
|