UwUHax/debugoverlay.h

11 lines
229 B
C
Raw Permalink Normal View History

2021-08-27 19:58:23 +08:00

class CDebugOverlay
{
public:
bool ScreenPosition(const Vector& vIn, Vector& vOut)
{
typedef bool(__thiscall* OriginalFn)(PVOID, const Vector&, Vector&);
return getvfunc<OriginalFn>(this, 12)(this, vIn, vOut);
}
};