mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 21:07:59 +03:00
Remove ESM:: namespace qualifier in components/esm3/ and tests
This commit is contained in:
parent
fd6899e91d
commit
4447ab0ed7
98 changed files with 752 additions and 610 deletions
|
@ -3,7 +3,10 @@
|
|||
#include "esmreader.hpp"
|
||||
#include "esmwriter.hpp"
|
||||
|
||||
void ESM::GlobalScript::load (ESMReader &esm)
|
||||
namespace ESM
|
||||
{
|
||||
|
||||
void GlobalScript::load (ESMReader &esm)
|
||||
{
|
||||
mId = esm.getHNString ("NAME");
|
||||
|
||||
|
@ -18,7 +21,7 @@ void ESM::GlobalScript::load (ESMReader &esm)
|
|||
mTargetRef.load(esm, true, "FRMR");
|
||||
}
|
||||
|
||||
void ESM::GlobalScript::save (ESMWriter &esm) const
|
||||
void GlobalScript::save (ESMWriter &esm) const
|
||||
{
|
||||
esm.writeHNString ("NAME", mId);
|
||||
|
||||
|
@ -34,3 +37,5 @@ void ESM::GlobalScript::save (ESMWriter &esm) const
|
|||
mTargetRef.save (esm, true, "FRMR");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue