summaryrefslogtreecommitdiffstats
path: root/src/vehicles/Plane.cpp
blob: 6e30bced684180aedb00ee623f6de9c2747f046c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "common.h"
#include "patcher.h"
#include "Plane.h"

CPlane::CPlane(int mi, uint8 owner)
{
	ctor(mi, owner);
}

WRAPPER CPlane* CPlane::ctor(int, uint8) { EAXJMP(0x54B170); }

CPlane::~CPlane()
{
	DeleteRwObject();
}

STARTPATCHES
InjectHook(0x54B270, &CPlane::dtor, PATCH_JUMP);
ENDPATCHES