mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-01 09:18:00 +03:00
19 lines
325 B
C++
19 lines
325 B
C++
![]() |
#include "healt.h"
|
||
|
#include "draw.h"
|
||
|
|
||
|
void __cdecl DrawHealtBar(__int32 percentual)
|
||
|
{
|
||
|
g_Renderer->DrawHealthBar(percentual);
|
||
|
}
|
||
|
|
||
|
void __cdecl DrawAirBar(__int32 percentual)
|
||
|
{
|
||
|
g_Renderer->DrawAirBar(percentual);
|
||
|
}
|
||
|
|
||
|
void Inject_Healt()
|
||
|
{
|
||
|
INJECT(0x004B1950, DrawHealtBar);
|
||
|
INJECT(0x004B18E0, DrawAirBar);
|
||
|
}
|