mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 15:39:02 +00:00
15 lines
218 B
C++
15 lines
218 B
C++
|
#include "loadrace.hpp"
|
||
|
|
||
|
namespace ESM
|
||
|
{
|
||
|
|
||
|
void Race::load(ESMReader &esm)
|
||
|
{
|
||
|
name = esm.getHNString("FNAM");
|
||
|
esm.getHNT(data, "RADT", 140);
|
||
|
powers.load(esm);
|
||
|
description = esm.getHNOString("DESC");
|
||
|
}
|
||
|
|
||
|
}
|