mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 11:49:56 +00:00
13 lines
158 B
C++
13 lines
158 B
C++
|
#include "loadltex.hpp"
|
||
|
|
||
|
namespace ESM
|
||
|
{
|
||
|
|
||
|
void LandTexture::load(ESMReader &esm)
|
||
|
{
|
||
|
esm.getHNT(index, "INTV");
|
||
|
texture = esm.getHNString("DATA");
|
||
|
}
|
||
|
|
||
|
}
|