PlayBackThisFrameInterpolation and all it required...

This commit is contained in:
Nikolay Korolev
2019-06-30 13:59:55 +03:00
parent b2b750bc90
commit e2bd3573b4
58 changed files with 662 additions and 11 deletions

14
src/entities/Boat.cpp Normal file
View File

@@ -0,0 +1,14 @@
#include "common.h"
#include "patcher.h"
#include "Boat.h"
CBoat::CBoat(int mi, uint8 owner)
{
ctor(mi, owner);
}
WRAPPER CBoat* CBoat::ctor(int, uint8) { EAXJMP(0x53E3E0); }
STARTPATCHES
InjectHook(0x53E790, &CBoat::dtor, PATCH_JUMP);
ENDPATCHES