summaryrefslogtreecommitdiffstats
path: root/src/vehicles/Boat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vehicles/Boat.h')
-rw-r--r--src/vehicles/Boat.h17
1 files changed, 17 insertions, 0 deletions
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");