Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!
#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