1
0
mirror of https://github.com/td512/re3.git synced 2026-01-17 00:12:08 +00:00
td512.re3/src/core/Instance.cpp

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