mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
13 lines
230 B
C
13 lines
230 B
C
#ifndef SPL_RANDOM_H
|
|
#define SPL_RANDOM_H
|
|
|
|
#include <nitro/types.h>
|
|
#include <nitro/fx/fx_vec.h>
|
|
|
|
extern u32 gSPLRandomState;
|
|
|
|
void SPLRandom_VecFx32(VecFx32 *vec);
|
|
void SPLRandom_VecFx32_XY(VecFx32 *vec);
|
|
|
|
#endif // SPL_RANDOM_H
|