mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
28 lines
479 B
C++
28 lines
479 B
C++
#include "loadbsgn.hpp"
|
|
|
|
#include "esmreader.hpp"
|
|
#include "esmwriter.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
|
|
void BirthSign::load(ESMReader &esm)
|
|
{
|
|
mName = esm.getHNString("FNAM");
|
|
mTexture = esm.getHNOString("TNAM");
|
|
mDescription = esm.getHNOString("DESC");
|
|
|
|
mPowers.load(esm);
|
|
}
|
|
|
|
void BirthSign::save(ESMWriter &esm)
|
|
{
|
|
esm.writeHNCString("FNAM", mName);
|
|
esm.writeHNOCString("TNAM", mTexture);
|
|
esm.writeHNOCString("DESC", mDescription);
|
|
|
|
mPowers.save(esm);
|
|
}
|
|
|
|
}
|