mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 20:29:57 +00:00
10 lines
216 B
C++
10 lines
216 B
C++
#include "cell.hpp"
|
|
|
|
#include <sstream>
|
|
|
|
void CSMWorld::Cell::load(ESM::ESMReader& esm, bool& isDeleted)
|
|
{
|
|
ESM::Cell::load(esm, isDeleted, false);
|
|
|
|
mId = ESM::RefId::stringRefId(ESM::Cell::mId.toString());
|
|
}
|