forked from mirror/openmw-tes3mp
17 lines
362 B
C++
17 lines
362 B
C++
#include "landtexture.hpp"
|
|
|
|
#include <components/esm/esmreader.hpp>
|
|
|
|
namespace CSMWorld
|
|
{
|
|
void LandTexture::load(ESM::ESMReader &esm, bool &isDeleted)
|
|
{
|
|
ESM::LandTexture::load(esm, isDeleted);
|
|
int plugin = esm.getIndex();
|
|
|
|
std::ostringstream stream;
|
|
stream << mIndex << "_" << plugin;
|
|
mId = stream.str();
|
|
}
|
|
|
|
}
|