1
0
mirror of https://github.com/blawar/ooot.git synced 2024-06-25 22:09:34 +00:00
ooot/include/def/random.h
2022-02-16 17:54:09 -05:00

11 lines
276 B
C

#pragma once
f32 Rand_Centered(void);
f32 Rand_Centered_Variable(u32* rndNum);
u32 Rand_Next(void);
u32 Rand_Next_Variable(u32* rndNum);
void Rand_Seed(u32 seed);
void Rand_Seed_Variable(u32* rndNum, u32 seed);
f32 Rand_ZeroOne(void);
f32 Rand_ZeroOne_Variable(u32* rndNum);