summaryrefslogtreecommitdiffstats
path: root/src/peds/EmergencyPed.cpp
blob: 664bd6f6b826b19530574cb9229767a123f2ff00 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "common.h"
#include "patcher.h"
#include "EmergencyPed.h"

class CEmergencyPed_ : public CEmergencyPed
{
public:
	void dtor(void) { CEmergencyPed::~CEmergencyPed(); }
};

STARTPATCHES
	InjectHook(0x4C2EF0, &CEmergencyPed_::dtor, PATCH_JUMP);
ENDPATCHES