Merge pull request #1745 from Areloch/PathShapeDataCRCFix
Some checks failed
Linux Build / Ubuntu Latest GCC (push) Has been cancelled
MacOSX Build / MacOSX Latest Clang (push) Has been cancelled
Windows Build / Windows Latest MSVC (push) Has been cancelled

Proper constructor for PathShapeData
This commit is contained in:
Brian Roberts 2026-05-18 15:38:40 -05:00 committed by GitHub
commit 1a3b97ffd1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -27,6 +27,11 @@
IMPLEMENT_CO_DATABLOCK_V1(PathShapeData);
PathShapeData::PathShapeData()
{
mUseEase = false;
}
void PathShapeData::consoleInit()
{
}
@ -143,11 +148,6 @@ bool PathShape::onNewDataBlock(GameBaseData* dptr, bool reload)
return true;
}
PathShapeData::PathShapeData()
{
}
//----------------------------------------------------------------------------
void PathShape::initPersistFields()