21 lines
260 B
C
21 lines
260 B
C
|
|
#ifndef __MCOMPASS_H__
|
||
|
|
#define __MCOMPASS_H__
|
||
|
|
|
||
|
|
#define VERSION "0.0.0"
|
||
|
|
|
||
|
|
#include "config.h"
|
||
|
|
|
||
|
|
/* Milsko */
|
||
|
|
#include <MDE/Foundation.h>
|
||
|
|
#include <Mw/Milsko.h>
|
||
|
|
|
||
|
|
/* External */
|
||
|
|
|
||
|
|
/* Standard */
|
||
|
|
#include <math.h>
|
||
|
|
|
||
|
|
#ifndef M_PI
|
||
|
|
#define M_PI 3.14159265
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|