mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-17 01:39:01 +00:00
14 lines
No EOL
263 B
C++
14 lines
No EOL
263 B
C++
#include "common.h"
|
|
#include "patcher.h"
|
|
#include "PlayerPed.h"
|
|
|
|
CPlayerPed::~CPlayerPed()
|
|
{
|
|
delete m_pWanted;
|
|
}
|
|
|
|
WRAPPER void CPlayerPed::ReApplyMoveAnims(void) { EAXJMP(0x4F07C0); }
|
|
|
|
STARTPATCHES
|
|
InjectHook(0x4EFB30, &CPlayerPed::dtor, PATCH_JUMP);
|
|
ENDPATCHES |