2013-06-08 10:45:13 +00:00
|
|
|
|
|
|
|
#include "ref.hpp"
|
|
|
|
|
|
|
|
#include "cell.hpp"
|
|
|
|
|
2013-06-08 13:50:36 +00:00
|
|
|
void CSMWorld::CellRef::load (ESM::ESMReader &esm)
|
2013-06-08 10:45:13 +00:00
|
|
|
{
|
2013-06-08 13:50:36 +00:00
|
|
|
// The CellRef is not loaded here. Because of the unfortunate way how the ESMReader and the cell
|
|
|
|
// record is constructed, we do not have enough context in this function to perform a load.
|
2013-06-08 10:45:13 +00:00
|
|
|
|
2013-06-08 13:50:36 +00:00
|
|
|
// mId = id;
|
2013-06-08 10:45:13 +00:00
|
|
|
|
2013-06-08 13:50:36 +00:00
|
|
|
// cell.getNextRef (esm, *this);
|
|
|
|
|
|
|
|
// if (!mDeleted)
|
|
|
|
// cell.addRef (mId);
|
|
|
|
}
|