mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 09:36:37 +00:00
b8e11cf197
Conflicts: apps/esmtool/record.cpp apps/opencs/model/doc/savingstages.cpp apps/opencs/model/world/land.cpp apps/opencs/model/world/land.hpp apps/opencs/model/world/landtexture.cpp apps/openmw/mwworld/store.cpp components/esm/loadland.cpp components/esm/loadland.hpp
16 lines
281 B
C++
16 lines
281 B
C++
#include "land.hpp"
|
|
|
|
#include <sstream>
|
|
|
|
namespace CSMWorld
|
|
{
|
|
void Land::load(ESM::ESMReader &esm, bool &isDeleted)
|
|
{
|
|
ESM::Land::load(esm, isDeleted);
|
|
|
|
std::ostringstream stream;
|
|
stream << "#" << mX << " " << mY;
|
|
mId = stream.str();
|
|
}
|
|
}
|