mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-23 06:54:16 -04:00
19 lines
297 B
C
19 lines
297 B
C
#ifndef C_RND_H
|
|
#define C_RND_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
struct cM_rnd_c {
|
|
/* 0x0 */ int m0;
|
|
/* 0x4 */ int m4;
|
|
/* 0x8 */ int m8;
|
|
|
|
void init(int a, int b, int c);
|
|
f32 get();
|
|
f32 getF(f32);
|
|
f32 getFX(f32);
|
|
f32 getValue(f32 min, f32 max);
|
|
};
|
|
|
|
#endif /* C_RND_H */
|