forked from mirror/openmw-tes3mp
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);
|
||
|
}
|
||
|
|
||
|
}
|