mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
21 lines
331 B
C++
21 lines
331 B
C++
#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);
|
|
}
|
|
|
|
}
|