pokeplatinum/lib/include/nitro/math/rand.h
luckytyphlosion ea122df5e9 Match main.c
2022-12-23 16:54:09 -05:00

25 lines
283 B
C

#ifndef NITRO_MATH_RAND_H_
#define NITRO_MATH_RAND_H_
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
u64 x;
u64 mul;
u64 add;
} MATHRandContext32;
typedef struct {
u32 x;
u32 mul;
u32 add;
} MATHRandContext16;
#ifdef __cplusplus
}
#endif
#endif