mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 02:19:55 +00:00
15 lines
231 B
C++
15 lines
231 B
C++
#include "landtexture.hpp"
|
|
|
|
#include <components/esm/esmreader.hpp>
|
|
|
|
namespace CSMWorld
|
|
{
|
|
|
|
void LandTexture::load(ESM::ESMReader &esm)
|
|
{
|
|
ESM::LandTexture::load(esm);
|
|
|
|
mPluginIndex = esm.getIndex();
|
|
}
|
|
|
|
}
|