Blob Blame Raw
#ifndef HELI_COMMON_H
#define HELI_COMMON_H


#ifndef TRUE
#define TRUE  1
#endif

#ifndef FALSE
#define FALSE 0
#endif


int randomNumber(int min, int max);
double randomFloat();


#endif