mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 22:19:54 +00:00
12 lines
196 B
C++
12 lines
196 B
C++
|
#include "loadacti.hpp"
|
||
|
|
||
|
namespace ESM
|
||
|
{
|
||
|
void Activator::load(ESMReader &esm)
|
||
|
{
|
||
|
model = esm.getHNString("MODL");
|
||
|
name = esm.getHNString("FNAM");
|
||
|
script = esm.getHNOString("SCRI");
|
||
|
}
|
||
|
}
|