mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-05-01 14:27:59 +03:00
load and save sound gen records
This commit is contained in:
parent
147bffa7dd
commit
02247fe712
7 changed files with 36 additions and 1 deletions
|
@ -22,4 +22,10 @@ void SoundGenerator::save(ESMWriter &esm) const
|
|||
esm.writeHNOCString("SNAM", mSound);
|
||||
}
|
||||
|
||||
void SoundGenerator::blank()
|
||||
{
|
||||
mType = LeftFoot;
|
||||
mCreature.clear();
|
||||
mSound.clear();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -36,6 +36,8 @@ struct SoundGenerator
|
|||
|
||||
void load(ESMReader &esm);
|
||||
void save(ESMWriter &esm) const;
|
||||
|
||||
void blank();
|
||||
};
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue