summaryrefslogtreecommitdiffstats
path: root/src/entities/Plane.h
blob: 9acc24eca956af4c67352d4ac21e0ad7c1eac52c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "Vehicle.h"

class CPlane : public CVehicle
{
public:
	// 0x288
	uint8 stuff[20];
};
static_assert(sizeof(CPlane) == 0x29C, "CPlane: error");