You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
229 B
C++
16 lines
229 B
C++
14 years ago
|
#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);
|
||
|
}
|
||
|
|
||
|
}
|