mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 15:39:02 +00:00
23 lines
497 B
C++
23 lines
497 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. Encodes mIndex and the plugin index (obtained from ESMReader)
|
|
/// in the ID.
|
|
///
|
|
/// \attention The mId field of the ESM::LandTexture struct is not used.
|
|
struct LandTexture : public ESM::LandTexture
|
|
{
|
|
std::string mId;
|
|
|
|
void load (ESM::ESMReader &esm);
|
|
};
|
|
}
|
|
|
|
#endif
|