mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 15:19:55 +00:00
20 lines
No EOL
387 B
C++
20 lines
No EOL
387 B
C++
|
|
#include "creaturestats.hpp"
|
|
|
|
void ESM::CreatureStats::load (ESMReader &esm)
|
|
{
|
|
for (int i=0; i<8; ++i)
|
|
mAttributes[i].load (esm);
|
|
|
|
for (int i=0; i<3; ++i)
|
|
mDynamic[i].load (esm);
|
|
}
|
|
|
|
void ESM::CreatureStats::save (ESMWriter &esm) const
|
|
{
|
|
for (int i=0; i<8; ++i)
|
|
mAttributes[i].save (esm);
|
|
|
|
for (int i=0; i<3; ++i)
|
|
mDynamic[i].save (esm);
|
|
} |