2014-10-08 15:17:31 +00:00
|
|
|
#include "landtexture.hpp"
|
|
|
|
|
|
|
|
#include <components/esm/esmreader.hpp>
|
|
|
|
|
|
|
|
namespace CSMWorld
|
|
|
|
{
|
2015-07-21 17:25:43 +00:00
|
|
|
void LandTexture::load(ESM::ESMReader &esm, bool &isDeleted)
|
2014-10-08 15:17:31 +00:00
|
|
|
{
|
2015-07-21 17:25:43 +00:00
|
|
|
ESM::LandTexture::load(esm, isDeleted);
|
2014-10-08 15:17:31 +00:00
|
|
|
int plugin = esm.getIndex();
|
|
|
|
|
|
|
|
std::ostringstream stream;
|
|
|
|
stream << mIndex << "_" << plugin;
|
|
|
|
mId = stream.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|