mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-01 01:08:01 +03:00
12 lines
253 B
C++
12 lines
253 B
C++
![]() |
#include "text.h"
|
||
|
#include "draw.h"
|
||
|
|
||
|
void __cdecl PrintString(__int32 x, __int32 y, __int32 unk1, char* string, __int32 unk2)
|
||
|
{
|
||
|
g_Renderer->PrintString(x, y, string, 0xFFFFFFFF, 0);
|
||
|
}
|
||
|
|
||
|
void Inject_Text()
|
||
|
{
|
||
|
INJECT(0x00480BC0, PrintString);
|
||
|
}
|