2023-07-06 04:35:40 -05:00

5 lines
92 B
C++

#include "utils.h"
float util::random(float range){
return float(rand())/RAND_MAX*range;
}