mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
16 lines
279 B
C++
16 lines
279 B
C++
|
#include "loaddoor.hpp"
|
||
|
|
||
|
namespace ESM
|
||
|
{
|
||
|
|
||
|
void Door::load(ESMReader &esm)
|
||
|
{
|
||
|
model = esm.getHNString("MODL");
|
||
|
name = esm.getHNOString("FNAM");
|
||
|
script = esm.getHNOString("SCRI");
|
||
|
openSound = esm.getHNOString("SNAM");
|
||
|
closeSound = esm.getHNOString("ANAM");
|
||
|
}
|
||
|
|
||
|
}
|