mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 18:59:57 +00:00
d1fb854521
esm typo esm typo
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);
|
|
}
|