diff options
| author | inspectredc <78732756+inspectredc@users.noreply.github.com> | 2024-04-16 00:19:43 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-15 16:19:43 -0700 |
| commit | 7f426967efd07046bfbe791ed4e64808ae5a26e2 (patch) | |
| tree | 51014dee003a4e30ac6db96c640c66db13dc6d3f /include/m_clip.h | |
| parent | 4ab3a1d9dcb76d80fe745dcbe79f3e925b8fac7e (diff) | |
ac_ball OK and documented (#173)
* ac_ball OK
* hopefully format
* address warnings
* Apply suggestions from code review
Co-authored-by: emilybrooks <emilybrooksemilybrooks@gmail.com>
* suggestions pt2
---------
Co-authored-by: emilybrooks <emilybrooksemilybrooks@gmail.com>
Diffstat (limited to 'include/m_clip.h')
| -rw-r--r-- | include/m_clip.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/include/m_clip.h b/include/m_clip.h index 3f58ad1..844ee70 100644 --- a/include/m_clip.h +++ b/include/m_clip.h @@ -16,6 +16,7 @@ struct ShadowData; struct FurnitureActor; struct WeatherClip; struct ObjectExchangeBank; +struct xyz_t; typedef UNK_RET (*Clip_unk_040_unk_04)(struct ActorOverlay*, const u8*, size_t, s32); typedef UNK_RET (*Clip_unk_040_unk_08)(void); @@ -133,9 +134,11 @@ typedef struct Clip_unk_08C { /* 0x86C */ UNK_TYPE unk_86C; } Clip_unk_08C; // size >= 0x870 +typedef void (*Clip_unk_090_unk_00)(s8, struct xyz_t, s32, s32, struct Game_Play*, s32, s32, s32); typedef void (*Clip_unk_090_unk_30)(Color_RGBA8, s16,s16,s32); typedef struct Clip_unk_090 { - /* 0x00 */ UNK_TYPE1 unk_00[0x30]; + /* 0x00 */ Clip_unk_090_unk_00 unk_00; + /* 0x04 */ UNK_TYPE1 unk_04[0x2C]; /* 0x30 */ Clip_unk_090_unk_30 unk_30; } Clip_unk_090; // size >= 0x34 @@ -153,9 +156,12 @@ typedef struct Clip_unk_0A4 { } Clip_unk_0A4; typedef UNK_RET (*Clip_unk_0A8_unk_4)(void*); +typedef void (*Clip_unk_0A8_unk_C)(struct xyz_t*, f32, UNK_TYPE); typedef struct Clip_unk_0A8 { /* 0x00 */ UNK_TYPE1 unk_00[0x04]; - /* 0x04 */ Clip_unk_0A8_unk_4 unk_4; + /* 0x04 */ Clip_unk_0A8_unk_4 unk_04; + /* 0x08 */ UNK_TYPE1 unk_08[0x04]; + /* 0x0C */ Clip_unk_0A8_unk_C unk_0C; } Clip_unk_0A8; // size >= 0x8 typedef void (*Clip_unk_0B4_unk_4)(void); |
