1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 15:19:55 +00:00
openmw-tes3mp/components/esm/loadalch.cpp

23 lines
576 B
C++

#include "loadalch.hpp"
namespace ESM
{
void Potion::load(ESMReader &esm)
{
model = esm.getHNString("MODL");
icon = esm.getHNOString("TEXT"); // not ITEX here for some reason
script = esm.getHNOString("SCRI");
name = esm.getHNOString("FNAM");
esm.getHNT(data, "ALDT", 12);
effects.load(esm);
}
void Potion::save(ESMWriter &esm)
{
esm.writeHNCString("MODL", model);
esm.writeHNOCString("TEXT", icon);
esm.writeHNOCString("SCRI", script);
esm.writeHNOCString("FNAM", name);
esm.writeHNT("ALDT", data, 12);
effects.save(esm);
}
}