mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 05:19:55 +00:00
19 lines
393 B
C++
19 lines
393 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);
|
|
};
|
|
}
|
|
|
|
#endif
|