mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-06 00:55:50 +00:00
d1fb854521
esm typo esm typo
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);
|
|
}
|