mirror of
https://github.com/sonicdcer/sf64.git
synced 2024-12-18 02:07:00 +00:00
cc970381c8
* func_80092D48 * func_800927A0 * TempComp.bin.mio0 git ignored * func_800924E0 * func_80094D20 * func_80096A74 * func_80095604 * all functions done * symbols for segmented addresses * move symbols to c file for now * failed attempt to import data * fix * Import data * move data below * ready for BSS attempt * fix warnings * ordering * symbols for some segmented addresses * rename to fox_hud * clear mess * . * . * space * . * func_i2_80187530 * func_i2_8018756C * func_i2_80187650 * func_i2_801877C4 * func_i2_8018795C * func_i2_80187B08 * func_i2_80187C68 * bss again (#98) * func_i2_80187D08 * func_i2_80187D98 * func_i2_80187FF8 * func_i2_801881A8 * func_i2_80188228 * func_i2_80188298 * ARRAY_COUNT * func_i2_80188344 * func_i2_80188B84 * func_i2_80188C2C * func_i2_80188E8C * func_i2_80188F2C * func_i2_80188CAC * func_i2_80189114 * func_i2_8018B7C4 * func_i2_8018C77C * func_i2_8018C8F4 * func_i2_8018CA10 * func_i2_8018CB50 * func_i2_8018BACC co-authored-by: @inspectredc * func_i2_8018CCF8 * func_i2_8018CB50 * func_i2_8018CD8C co-authored-by: @inspectredc & @petrie911 * func_i2_8018D9EC * func_i2_8018DA6C * func_i2_8018DAEC * func_i2_8018DB6C * func_i2_8018DBEC * func_i2_8018DCE4 * func_i2_8018DE14 * func_i2_8018DF08 co-authored-by @inspectredc & @petrie911 * func_i2_8018E084 * func_i2_8018ED9C * func_i2_80188088 * func_i2_801892F0 * func_i2_8018978C co-authored-by @KiritoDv & inspectredc * fox_me DATA IMPORTED * resolve conflicts * func_i6_80197B30 * func_i6_80197CC4 * func_i6_80197F84 * func_i6_80198244 * merge and solve bss * func_i6_801983E4 * PR review --------- Co-authored-by: petrie911 <69443847+petrie911@users.noreply.github.com>
44 lines
1.1 KiB
C
44 lines
1.1 KiB
C
#ifndef HUD_H
|
|
#define HUD_H
|
|
|
|
#include "global.h"
|
|
|
|
typedef struct {
|
|
/* 0x00 */ u8* unk_00;
|
|
/* 0x04 */ s32 width;
|
|
/* 0x08 */ s32 height;
|
|
/* 0x0C */ u8* unk_0C;
|
|
/* 0x10 */ s32 unk_10;
|
|
/* 0x14 */ s32 unk_14;
|
|
} UnkStruct_D_800D1AEC;
|
|
|
|
void func_80084930(f32, f32, s32);
|
|
void func_80086444(void);
|
|
void func_80087788(void);
|
|
void func_80084E78(Gfx** gfxP, void* arg1, void* arg2, u32 arg3, u32 arg4, f32 arg5, f32 arg6, f32 arg7, f32 arg8,
|
|
f32 arg9, f32 argA);
|
|
void func_80085944(void);
|
|
void func_80086CC8(void);
|
|
void func_80086DCC(void);
|
|
void func_80087B5C(void);
|
|
void func_80089994(s32);
|
|
s32 func_8008A4DC(void);
|
|
void func_8008B044(void);
|
|
void func_8008B1B0(void);
|
|
void func_8008B2F0(void);
|
|
void func_8008B734(void);
|
|
void func_8008B9E8(void);
|
|
void func_8008BAE4(void);
|
|
void func_8008CBE4(void);
|
|
void func_8008D250(void);
|
|
void func_8008D31C(void);
|
|
void func_8008D4F0(f32, f32);
|
|
void func_8008D7F4(void);
|
|
void func_8008D984(void);
|
|
void func_8008DC34(void);
|
|
void func_8008E5E8(void);
|
|
s32 func_80090E8C(Actor*);
|
|
s32 func_800910C0(Actor*);
|
|
|
|
#endif
|