bool draw();
int save();

char* LoadGenes();
int RandInt( int foo );
float RandFloat();
void SetColor( Color c );
void SetColor21( Color c, double f );
void SetHue( double d );

#ifndef min
#define min(a,b)            (((a) < (b)) ? (a) : (b))
#endif

#ifndef max
#define max(a,b)            (((a) > (b)) ? (a) : (b))
#endif
