mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 09:36:37 +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
20 lines
410 B
C++
20 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
|