mirror of
https://github.com/TES3MP/TES3MP
synced 2026-08-16 14:26:04 -04: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);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|