1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-17 10:10:23 +00:00

Remove unused regionmap CellDescription constructor

This commit is contained in:
Sam Hellawell 2024-03-22 03:13:04 +00:00
parent 82bc6674dc
commit c20a23b694
2 changed files with 0 additions and 7 deletions

View File

@ -41,11 +41,6 @@ namespace CSMWorld
}
}
CSMWorld::RegionMap::CellDescription::CellDescription()
: mDeleted(false)
{
}
CSMWorld::RegionMap::CellDescription::CellDescription(const Record<Cell>& cell, float landHeight)
{
const Cell& cell2 = cell.get();

View File

@ -45,8 +45,6 @@ namespace CSMWorld
ESM::RefId mRegion;
std::string mName;
CellDescription();
CellDescription(const Record<Cell>& cell, float landHeight);
};