2014-10-08 15:17:31 +00:00
|
|
|
#ifndef CSM_WORLD_LANDTEXTURE_H
|
|
|
|
#define CSM_WORLD_LANDTEXTURE_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include <components/esm/loadltex.hpp>
|
|
|
|
|
|
|
|
namespace CSMWorld
|
|
|
|
{
|
2015-08-22 11:10:54 +00:00
|
|
|
/// \brief Wrapper for LandTexture record, providing info which plugin the LandTexture was loaded from.
|
2014-10-08 15:17:31 +00:00
|
|
|
struct LandTexture : public ESM::LandTexture
|
|
|
|
{
|
2015-08-22 11:10:54 +00:00
|
|
|
int mPluginIndex;
|
2014-10-08 15:17:31 +00:00
|
|
|
|
2015-07-21 17:25:43 +00:00
|
|
|
void load (ESM::ESMReader &esm, bool &isDeleted);
|
2014-10-08 15:17:31 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|