mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 18:35:20 +00:00
16 lines
231 B
C++
16 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();
|
|
}
|
|
|
|
}
|