You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
623 B
C++
32 lines
623 B
C++
#include "creaturelevliststate.hpp"
|
|
|
|
#include "esmreader.hpp"
|
|
#include "esmwriter.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
|
|
void CreatureLevListState::load(ESMReader &esm)
|
|
{
|
|
ObjectState::load(esm);
|
|
|
|
mSpawnActorId = -1;
|
|
esm.getHNOT (mSpawnActorId, "SPAW");
|
|
|
|
mSpawn = false;
|
|
esm.getHNOT (mSpawn, "RESP");
|
|
}
|
|
|
|
void CreatureLevListState::save(ESMWriter &esm, bool inInventory) const
|
|
{
|
|
ObjectState::save(esm, inInventory);
|
|
|
|
if (mSpawnActorId != -1)
|
|
esm.writeHNT ("SPAW", mSpawnActorId);
|
|
|
|
if (mSpawn)
|
|
esm.writeHNT ("RESP", mSpawn);
|
|
}
|
|
|
|
}
|