You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
449 B
C++
26 lines
449 B
C++
#include "doorstate.hpp"
|
|
|
|
#include "esmreader.hpp"
|
|
#include "esmwriter.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
|
|
void DoorState::load(ESMReader &esm)
|
|
{
|
|
ObjectState::load(esm);
|
|
|
|
mDoorState = 0;
|
|
esm.getHNOT (mDoorState, "ANIM");
|
|
}
|
|
|
|
void DoorState::save(ESMWriter &esm, bool inInventory) const
|
|
{
|
|
ObjectState::save(esm, inInventory);
|
|
|
|
if (mDoorState != 0)
|
|
esm.writeHNT ("ANIM", mDoorState);
|
|
}
|
|
|
|
}
|