1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-16 21:59:55 +00:00
openmw/components/esm3/containerstate.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
331 B
C++
Raw Normal View History

#include "containerstate.hpp"
namespace ESM
{
void ContainerState::load(ESMReader& esm)
{
ObjectState::load(esm);
mInventory.load(esm);
}
void ContainerState::save(ESMWriter& esm, bool inInventory) const
{
ObjectState::save(esm, inInventory);
mInventory.save(esm);
2015-03-11 14:54:45 +00:00
}
}