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.
|
#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);
|
|
}
|
|
|
|
}
|