diff options
Diffstat (limited to '')
-rw-r--r-- | src/entities/Boat.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/entities/Boat.h b/src/entities/Boat.h index 26de0cdc..6d6482a4 100644 --- a/src/entities/Boat.h +++ b/src/entities/Boat.h @@ -9,5 +9,9 @@ public: 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"); |