2015-01-16 23:11:36 +00:00
|
|
|
#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
|
2015-01-16 23:11:36 +00:00
|
|
|
{
|
|
|
|
std::string mIndexedRefId;
|
|
|
|
|
2015-01-18 18:59:29 +00:00
|
|
|
std::string mScript;
|
|
|
|
|
2015-01-18 15:13:52 +00:00
|
|
|
bool mEnabled;
|
|
|
|
|
2015-01-21 21:25:37 +00:00
|
|
|
bool mDeleted;
|
|
|
|
|
2015-01-16 23:11:36 +00:00
|
|
|
void load(ESM::ESMReader& esm);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|