mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 09:49:55 +00:00
b8e11cf197
Conflicts: apps/esmtool/record.cpp apps/opencs/model/doc/savingstages.cpp apps/opencs/model/world/land.cpp apps/opencs/model/world/land.hpp apps/opencs/model/world/landtexture.cpp apps/openmw/mwworld/store.cpp components/esm/loadland.cpp components/esm/loadland.hpp
14 lines
258 B
C++
14 lines
258 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);
|
|
|
|
mPluginIndex = esm.getIndex();
|
|
}
|
|
|
|
}
|