forked from mirror/openmw-tes3mp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
551 B
C++
29 lines
551 B
C++
#include "loadglob.hpp"
|
|
|
|
#include "defs.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
unsigned int Global::sRecordId = REC_GLOB;
|
|
|
|
void Global::load (ESMReader &esm)
|
|
{
|
|
mValue.read (esm, ESM::Variant::Format_Global);
|
|
}
|
|
|
|
void Global::save (ESMWriter &esm) const
|
|
{
|
|
mValue.write (esm, ESM::Variant::Format_Global);
|
|
}
|
|
|
|
void Global::blank()
|
|
{
|
|
mValue.setType (ESM::VT_None);
|
|
}
|
|
|
|
bool operator== (const Global& left, const Global& right)
|
|
{
|
|
return left.mId==right.mId && left.mValue==right.mValue;
|
|
}
|
|
}
|