mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 09:36:37 +00:00
14 lines
176 B
C++
14 lines
176 B
C++
|
#include "loadspel.hpp"
|
||
|
|
||
|
namespace ESM
|
||
|
{
|
||
|
|
||
|
void Spell::load(ESMReader &esm)
|
||
|
{
|
||
|
name = esm.getHNOString("FNAM");
|
||
|
esm.getHNT(data, "SPDT", 12);
|
||
|
effects.load(esm);
|
||
|
}
|
||
|
|
||
|
}
|