blob: 0c3845ff5eb813fafe7039e10c3a4a8183d70422 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include "utils.h"
// Based on mattiasgustavsson's rnd.h header
void rand_init(void);
u32 rand_u32(void);
fx32 rand_fx32(void);
int rand_i32_range(i32 min, i32 max);
|