mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 21:19:57 +00:00
67bd6cd708
git ls-files -z | xargs -0 sed -i '1{/^$/d}'
15 lines
287 B
C++
15 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);
|
|
}
|