lakitu.c OK

Also changed some parts of the entity struct and created trig.h
This commit is contained in:
21aslade
2020-07-01 12:03:23 -06:00
parent e241a70a31
commit 607c32ac5e
8 changed files with 450 additions and 762 deletions
+2 -2
View File
@@ -142,8 +142,8 @@ typedef struct Entity {
u8 field_0x6d;
u8 filler4[6];
u16 field_0x74;
u8 filler5[2];
u16 field_0x78;
u16 field_0x76;
union SplitHWord field_0x78;
u16 field_0x7a;
union SplitWord field_0x7c;
u16 field_0x80;
+7
View File
@@ -0,0 +1,7 @@
#ifndef TRIG_H
#define TRIG_H
extern const s16 gSineTable[];
extern const s16 gCosineTable[];
#endif