2011-04-08 17:58:21 +04:00
|
|
|
#include "loadltex.hpp"
|
|
|
|
|
2012-09-23 22:41:41 +04:00
|
|
|
#include "esmreader.hpp"
|
|
|
|
#include "esmwriter.hpp"
|
2013-09-24 13:17:28 +02:00
|
|
|
#include "defs.hpp"
|
2012-09-17 11:37:50 +04:00
|
|
|
|
2011-04-08 17:58:21 +04:00
|
|
|
namespace ESM
|
|
|
|
{
|
2013-09-24 13:17:28 +02:00
|
|
|
unsigned int LandTexture::sRecordId = REC_LTEX;
|
2011-04-08 17:58:21 +04:00
|
|
|
|
|
|
|
void LandTexture::load(ESMReader &esm)
|
|
|
|
{
|
2012-09-17 11:37:50 +04:00
|
|
|
esm.getHNT(mIndex, "INTV");
|
|
|
|
mTexture = esm.getHNString("DATA");
|
2011-04-08 17:58:21 +04:00
|
|
|
}
|
2013-09-16 12:32:35 +02:00
|
|
|
void LandTexture::save(ESMWriter &esm) const
|
2012-04-06 21:04:30 +02:00
|
|
|
{
|
2012-09-17 11:37:50 +04:00
|
|
|
esm.writeHNT("INTV", mIndex);
|
|
|
|
esm.writeHNCString("DATA", mTexture);
|
2011-04-08 17:58:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|