mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 21:19:57 +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
19 lines
410 B
C++
19 lines
410 B
C++
#ifndef CSM_WORLD_LANDTEXTURE_H
|
|
#define CSM_WORLD_LANDTEXTURE_H
|
|
|
|
#include <string>
|
|
|
|
#include <components/esm/loadltex.hpp>
|
|
|
|
namespace CSMWorld
|
|
{
|
|
/// \brief Wrapper for LandTexture record, providing info which plugin the LandTexture was loaded from.
|
|
struct LandTexture : public ESM::LandTexture
|
|
{
|
|
int mPluginIndex;
|
|
|
|
void load (ESM::ESMReader &esm, bool &isDeleted);
|
|
};
|
|
}
|
|
|
|
#endif
|