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

#include "Vehicle.h"

class CBoat : public CVehicle
{
public:
	// 0x288
	uint8 stuff1[57];
	bool m_bIsAnchored;
	uint8 stuff[450];
};
static_assert(sizeof(CBoat) == 0x484, "CBoat: error");