mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 03:39:14 +00:00
24 lines
416 B
C++
24 lines
416 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);
|
|
esm.writeHNOString("TNAM", texture);
|
|
esm.writeHNOString("DESC", description);
|
|
|
|
powers.save(esm);
|
|
}
|
|
|
|
}
|