1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-27 12:35:46 +00:00
2015-08-31 18:13:27 +02:00

17 lines
254 B
C++

#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();
}
}