1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 12:19:55 +00:00
openmw-tes3mp/apps/essimporter/importcellref.hpp

36 lines
483 B
C++
Raw Normal View History

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