mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-05 08:35:54 +00:00
14 lines
234 B
C++
14 lines
234 B
C++
|
#include "common.h"
|
||
|
#include "patcher.h"
|
||
|
#include "Instance.h"
|
||
|
|
||
|
class CInstance_ : public CInstance
|
||
|
{
|
||
|
public:
|
||
|
void dtor() { CInstance::~CInstance(); }
|
||
|
};
|
||
|
|
||
|
STARTPATCHES
|
||
|
InjectHook(0x50BE90, &CInstance_::dtor, PATCH_JUMP);
|
||
|
ENDPATCHES
|