Create RNG module

This commit is contained in:
2025-10-18 17:43:22 +01:00
parent c1f339484b
commit f992dd3d39
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();