#include "utils.h"

float util::random(float range){
	return float(rand())/RAND_MAX*range;
}