mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 06:54:14 -04:00
666cb6ad4a
* low hanging fruits on variables.h
* z_actor functions
* Move RomFile to z64object.h
* Revert "z_actor functions"
This reverts commit aa99967d16.
* yeet
* z64actor_dlftbls.h
* Move object segment declarations to object_table.c
* Move Camera functions
* z64nmi_buff.h
* fix merge
* su_mtx.h, sys_cmpdma.h and sys_initial_check.h
* sys_ucode.h
* sys_flashrom.h
* Remove unnecessary includes
* z64kanfont.h
* flg_set.h
* z64DLF.h
* z64lifemeter.h
* z64path.h
* format
* ObjectOverlay
* bss
* Yeet ObjectOverlay
* review
* review
* format
* bss
* z64font.h
18 lines
520 B
C
18 lines
520 B
C
#ifndef Z64LIFEMETER_H
|
|
#define Z64LIFEMETER_H
|
|
|
|
#include "PR/ultratypes.h"
|
|
|
|
struct PlayState;
|
|
|
|
void LifeMeter_Init(struct PlayState* play);
|
|
void LifeMeter_UpdateColors(struct PlayState* play);
|
|
s32 LifeMeter_SaveInterfaceHealth(struct PlayState* play);
|
|
s32 LifeMeter_IncreaseInterfaceHealth(struct PlayState* play);
|
|
s32 LifeMeter_DecreaseInterfaceHealth(struct PlayState* play);
|
|
void LifeMeter_Draw(struct PlayState* play);
|
|
void LifeMeter_UpdateSizeAndBeep(struct PlayState* play);
|
|
u32 LifeMeter_IsCritical(void);
|
|
|
|
#endif
|