mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-06 00:55:50 +00:00
fcfe267fc9
Removed obsolete *.cpp files.
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");
|
|
}
|
|
|
|
}
|