12 lines
114 B
C
12 lines
114 B
C
#ifndef RNG_H
|
|
#define RNG_H
|
|
|
|
#include "vec3.h"
|
|
|
|
void rng_init();
|
|
|
|
double rng_double();
|
|
vec3_t rng_vec3();
|
|
|
|
#endif
|