mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 15:19:55 +00:00
17 lines
275 B
C++
17 lines
275 B
C++
#include "loadltex.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
|
|
void LandTexture::load(ESMReader &esm)
|
|
{
|
|
esm.getHNT(index, "INTV");
|
|
texture = esm.getHNString("DATA");
|
|
}
|
|
void LandTexture::save(ESMWriter &esm)
|
|
{
|
|
esm.writeHNT("INTV", index);
|
|
esm.writeHNCString("DATA", texture);
|
|
}
|
|
|
|
}
|