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

17 lines
254 B
C++
Raw Normal View History

#include "land.hpp"
#include <sstream>
namespace CSMWorld
{
void Land::load(ESM::ESMReader &esm)
{
ESM::Land::load(esm);
std::ostringstream stream;
stream << "#" << mX << " " << mY;
mId = stream.str();
}
}