mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 15:49:56 +00:00
fcfe267fc9
Removed obsolete *.cpp files.
15 lines
279 B
C++
15 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");
|
|
}
|
|
|
|
}
|