1
0
forked from akanyan/mu3-mods
Files
mu3-mods/Extras/Offgeki/MU3/patch_UIPlayerInfo.cs
2025-04-01 23:01:04 -06:00

18 lines
358 B
C#

using MU3.Util;
namespace MU3;
class patch_UIPlayerInfo : UIPlayerInfo
{
private ANM_PLY_life _playerLife;
extern private void orig_create();
private new void create()
{
orig_create();
if(Singleton<Mod.State>.instance.RemovePlayerHealthUI)
{
_playerLife.gameObject.SetActive(false);
}
}
}