mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 21:07:59 +03: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);
|
||
|
}
|
||
|
|
||
|
}
|