1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 15:49:56 +00:00
openmw-tes3mp/components/esm/loadbsgn.cpp
2012-04-06 21:04:30 +02:00

25 lines
478 B
C++

#include "loadbsgn.hpp"
namespace ESM
{
void BirthSign::load(ESMReader &esm)
{
name = esm.getHNString("FNAM");
texture = esm.getHNOString("TNAM");
description = esm.getHNOString("DESC");
powers.load(esm);
}
void BirthSign::save(ESMWriter &esm)
{
esm.writeHNString("FNAM", name);
if (!texture.empty())
esm.writeHNString("TNAM", texture);
if (!description.empty())
esm.writeHNString("DESC", description);
powers.save(esm);
}
}