summaryrefslogtreecommitdiffstats
path: root/src/entities/Plane.h
blob: e26008f6dc88018700bb2d217cee75ba1d0967a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include "common.h"
#include "Vehicle.h"

class CPlane : public CVehicle
{
public:
	// 0x288
	uint8 stuff[20];

	CPlane(int, uint8);
	~CPlane(void);
	CPlane* ctor(int, uint8);
	void dtor(void) { this->CPlane::~CPlane(); }
	void FlagToDestroyWhenNextProcessed() { bRemoveFromWorld = true; }
};
static_assert(sizeof(CPlane) == 0x29C, "CPlane: error");