1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 05:49:56 +00:00
openmw-tes3mp/apps/opencs/model/world/land.cpp
2015-08-31 18:13:27 +02:00

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