From 53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb Mon Sep 17 00:00:00 2001 From: aap Date: Sun, 7 Jul 2019 13:09:11 +0200 Subject: the great reorganization --- src/vehicles/Boat.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/vehicles/Boat.h (limited to 'src/vehicles/Boat.h') diff --git a/src/vehicles/Boat.h b/src/vehicles/Boat.h new file mode 100644 index 00000000..6d6482a4 --- /dev/null +++ b/src/vehicles/Boat.h @@ -0,0 +1,17 @@ +#pragma once + +#include "Vehicle.h" + +class CBoat : public CVehicle +{ +public: + // 0x288 + uint8 stuff1[57]; + bool m_bIsAnchored; + uint8 stuff[450]; + + CBoat(int, uint8); + CBoat* ctor(int, uint8); + void dtor() { this->CBoat::~CBoat(); }; +}; +static_assert(sizeof(CBoat) == 0x484, "CBoat: error"); -- cgit v1.2.3