The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .
#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