forked from mirror/openmw-tes3mp
16 lines
No EOL
269 B
C++
16 lines
No EOL
269 B
C++
|
|
#include "npcstate.hpp"
|
|
|
|
void ESM::NpcState::load (ESMReader &esm)
|
|
{
|
|
ObjectState::load (esm);
|
|
|
|
mInventory.load (esm);
|
|
}
|
|
|
|
void ESM::NpcState::save (ESMWriter &esm, bool inInventory) const
|
|
{
|
|
ObjectState::save (esm, inInventory);
|
|
|
|
mInventory.save (esm);
|
|
} |