mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
16 lines
229 B
C++
16 lines
229 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);
|
||
|
}
|
||
|
|
||
|
}
|