Implement RNG module

This commit is contained in:
Camden Dixie O'Brien
2025-09-21 13:40:48 +01:00
parent d5474546ca
commit 77cb219749
4 changed files with 40 additions and 0 deletions

11
include/rng.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef RNG_H
#define RNG_H
#include "vec3.h"
void rng_init();
double rng_double();
vec3_t rng_vec3();
#endif