You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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
|
|
}
|
|
|
|
}
|