1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-18 13:12:50 +00:00
OpenMW/apps/essimporter/importcellref.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
501 B
C++
Raw Normal View History

#ifndef OPENMW_ESSIMPORT_CELLREF_H
#define OPENMW_ESSIMPORT_CELLREF_H
#include <string>
#include <components/esm3/cellref.hpp>
#include "importacdt.hpp"
namespace ESM
{
class ESMReader;
}
namespace ESSImport
{
struct CellRef : public ESM::CellRef
{
std::string mIndexedRefId;
std::string mScript;
bool mEnabled;
2015-01-21 22:25:37 +01:00
bool mDeleted;
ActorData mActorData;
2020-06-10 10:58:07 +04:00
void load(ESM::ESMReader& esm);
~CellRef() = default;
};
}
#endif