re3/src/entities/PlayerPed.cpp

14 lines
263 B
C++
Raw Normal View History

2019-06-29 11:38:37 +00:00
#include "common.h"
#include "patcher.h"
#include "PlayerPed.h"
CPlayerPed::~CPlayerPed()
{
delete m_pWanted;
}
2019-06-29 15:07:57 +00:00
WRAPPER void CPlayerPed::ReApplyMoveAnims(void) { EAXJMP(0x4F07C0); }
STARTPATCHES
InjectHook(0x4EFB30, &CPlayerPed::dtor, PATCH_JUMP);
ENDPATCHES