-
Автор темы
- #1
Здравствуйте подскажите что за адрес FN_DrawText(0x14021C6B0) думаю что это Renderer но как его найти ?
Код:
IDXGISwapChain* GetIDXGISwapChain() { return *(IDXGISwapChain**)((uintptr_t)this + 0x14CFB8); }
using FN_DrawText = void(__thiscall*)(CRenderer*, float, float, float, const float*, bool, const char*);
void drawText(float x, float y, float font_size, bool center, const char* label_text, ...)
{
constexpr float f_colorRed[4]{ 1.f, 0.f, 0.f, 1.f };
return FN_DrawText(0x14021C6B0)(this, x, y, font_size, f_colorRed, center, label_text);
Последнее редактирование: