pawengine/util.c

4 lines
79 B
C
Raw Normal View History

#include <stdlib.h>
float randf() { return (float)rand() / (float)RAND_MAX; }