mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 15:49:55 +00:00
29 lines
388 B
C++
29 lines
388 B
C++
|
#include "land.hpp"
|
||
|
|
||
|
#include <sstream>
|
||
|
|
||
|
namespace CSMWorld
|
||
|
{
|
||
|
|
||
|
Land::Land()
|
||
|
{
|
||
|
mLand.reset(new ESM::Land());
|
||
|
}
|
||
|
|
||
|
void Land::load(ESM::ESMReader &esm)
|
||
|
{
|
||
|
mLand->load(esm);
|
||
|
|
||
|
std::ostringstream stream;
|
||
|
stream << "#" << mLand->mX << " " << mLand->mY;
|
||
|
|
||
|
mId = stream.str();
|
||
|
}
|
||
|
|
||
|
void Land::blank()
|
||
|
{
|
||
|
/// \todo
|
||
|
}
|
||
|
|
||
|
}
|