Create RNG module

This commit is contained in:
Camden Dixie O'Brien
2025-10-14 12:06:06 +01:00
parent a698e0af7d
commit 7b31fcfac5
5 changed files with 50 additions and 13 deletions

3
main.c
View File

@@ -1,6 +1,7 @@
#include "game.h"
#include "input.h"
#include "renderer.h"
#include "rng.h"
#include <stdio.h>
#include <sys/select.h>
@@ -9,6 +10,8 @@
int main()
{
rng_init();
const int input_fd = input_init();
const renderer_params_t renderer_params = renderer_init();