mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
67bd6cd708
git ls-files -z | xargs -0 sed -i '1{/^$/d}'
16 lines
287 B
C++
16 lines
287 B
C++
#include "containerstate.hpp"
|
|
|
|
void ESM::ContainerState::load (ESMReader &esm)
|
|
{
|
|
ObjectState::load (esm);
|
|
|
|
mInventory.load (esm);
|
|
}
|
|
|
|
void ESM::ContainerState::save (ESMWriter &esm, bool inInventory) const
|
|
{
|
|
ObjectState::save (esm, inInventory);
|
|
|
|
mInventory.save (esm);
|
|
}
|