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

#include "Vehicle.h"

class CHeli : public CVehicle
{
public:
	// 0x288
	uint8 stuff[180];

	static void SpecialHeliPreRender(void);
};
static_assert(sizeof(CHeli) == 0x33C, "CHeli: error");