d_drawlist work

This commit is contained in:
Jasper St. Pierre
2023-10-15 16:41:19 -07:00
parent bc7835f6cf
commit c4aef79f3f
12 changed files with 399 additions and 290 deletions
+22
View File
@@ -0,0 +1,22 @@
#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) {
m0 = a;
m4 = b;
m8 = c;
}
int get();
f32 getF(f32);
f32 getFX(f32);
f32 getValue(f32, f32);
};
#endif /* C_RND_H */