1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-06-15 00:05:02 +02:00

Make IObjectInterface::cb non-static

This commit is contained in:
Ivan Savenko
2024-01-01 16:37:48 +02:00
parent c37ce05d06
commit a15366f5a5
89 changed files with 502 additions and 445 deletions

View File

@ -160,8 +160,9 @@ bool TerrainTile::isWater() const
return terType->isWater();
}
CMap::CMap()
: checksum(0)
CMap::CMap(IGameCallback * cb)
: GameCallbackHolder(cb)
, checksum(0)
, grailPos(-1, -1, -1)
, grailRadius(0)
, uidCounter(0)