When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.
#if PLATFORM == PLATFORM_WINDOWS void wait( float seconds ) { Sleep( (int) ( seconds * 1000.0f ) ); }#else #include <unistd.h> void wait( float seconds ) { usleep( (int) ( seconds * 1000000.0f ) ); }#endif