aboutsummaryrefslogtreecommitdiff
path: root/src/rand_sys.h
blob: 75198a0013f27401ff2ab2e3b6970a361a7821e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "config.h"

// Based on mattiasgustavsson's rnd.h header

void rand_seed(void);

u32 rand_u32(void);

int rand_range(i32 min, i32 max);