OpenMW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
importcellref.hpp
Go to the documentation of this file.
1 #ifndef OPENMW_ESSIMPORT_CELLREF_H
2 #define OPENMW_ESSIMPORT_CELLREF_H
3 
4 #include <string>
5 
7 
8 #include "importacdt.hpp"
9 
10 namespace ESM
11 {
12  class ESMReader;
13 }
14 
15 namespace ESSImport
16 {
17 
18  struct CellRef : public ActorData
19  {
20  std::string mIndexedRefId;
21 
22  std::string mScript;
23 
24  bool mEnabled;
25 
26  bool mDeleted;
27 
28  void load(ESM::ESMReader& esm);
29  };
30 
31 }
32 
33 #endif
Definition: esmreader.hpp:21
std::string mScript
Definition: importcellref.hpp:22
bool mDeleted
Definition: importcellref.hpp:26
Definition: importacdt.hpp:66
void load(ESM::ESMReader &esm)
Definition: importcellref.cpp:8
std::string mIndexedRefId
Definition: importcellref.hpp:20
bool mEnabled
Definition: importcellref.hpp:24
Definition: importcellref.hpp:18