mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-07-31 15:17:20 -05:00
25 lines
283 B
C
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
|