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

#include "Vehicle.h"

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