1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-25 03:40:40 +00:00

11 lines
216 B
C++
Raw Normal View History

2013-04-14 17:04:55 +02:00
#include "cell.hpp"
#include <sstream>
2022-09-22 21:26:05 +03:00
void CSMWorld::Cell::load(ESM::ESMReader& esm, bool& isDeleted)
2013-04-14 17:04:55 +02:00
{
2022-09-22 21:26:05 +03:00
ESM::Cell::load(esm, isDeleted, false);
2013-04-14 17:04:55 +02:00
mId = ESM::RefId::stringRefId(ESM::Cell::mId.toString());
}