mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-23 20:53:52 +00:00
1aa1336dcf
(cherry picked from commit 30b42bf4c0
)
21 lines
356 B
C++
21 lines
356 B
C++
#include "util.hpp"
|
|
|
|
#include <cstdint>
|
|
|
|
namespace ESM
|
|
{
|
|
bool readDeleSubRecord(ESMReader &esm)
|
|
{
|
|
if (esm.isNextSub("DELE"))
|
|
{
|
|
esm.skipHSub();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void writeDeleSubRecord(ESMWriter &esm)
|
|
{
|
|
esm.writeHNT("DELE", static_cast<int32_t>(0));
|
|
}
|
|
}
|