mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-16 23:28:59 +00:00
13 lines
234 B
C++
13 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
|