2019-06-02 16:13:56 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Vehicle.h"
|
|
|
|
|
|
|
|
class CBoat : public CVehicle
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// 0x288
|
2019-06-29 21:15:55 +01:00
|
|
|
uint8 stuff1[57];
|
|
|
|
bool m_bIsAnchored;
|
|
|
|
uint8 stuff[450];
|
2019-06-30 11:59:55 +01:00
|
|
|
|
|
|
|
CBoat(int, uint8);
|
|
|
|
CBoat* ctor(int, uint8);
|
|
|
|
void dtor() { this->CBoat::~CBoat(); };
|
2019-06-02 16:13:56 +01:00
|
|
|
};
|
|
|
|
static_assert(sizeof(CBoat) == 0x484, "CBoat: error");
|