mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 15:39:02 +00:00
21 lines
350 B
C++
21 lines
350 B
C++
|
#include "util.hpp"
|
||
|
|
||
|
namespace ESM
|
||
|
{
|
||
|
bool readDeleSubRecord(ESMReader &esm)
|
||
|
{
|
||
|
if (esm.isNextSub("DELE"))
|
||
|
{
|
||
|
esm.getSubName();
|
||
|
esm.skipHSub();
|
||
|
return true;
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
void writeDeleSubRecord(ESMWriter &esm)
|
||
|
{
|
||
|
esm.writeHNString("DELE", "");
|
||
|
}
|
||
|
}
|