OpenMW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
importscpt.hpp
Go to the documentation of this file.
1 #ifndef OPENMW_ESSIMPORT_IMPORTSCPT_H
2 #define OPENMW_ESSIMPORT_IMPORTSCPT_H
3 
4 #include "importscri.hpp"
5 
7 
8 namespace ESM
9 {
10  class ESMReader;
11 }
12 
13 namespace ESSImport
14 {
15 
16  // A running global script
17  struct SCPT
18  {
20 
21  // values of local variables
23 
24  bool mRunning;
25  int mRefNum; // Targeted reference, -1: no reference
26 
27  void load(ESM::ESMReader& esm);
28  };
29 
30 }
31 
32 #endif
Definition: loadscpt.hpp:32
Definition: esmreader.hpp:21
Local variable assignments for a running script.
Definition: importscri.hpp:17
int mRefNum
Definition: importscpt.hpp:25
Definition: importscpt.hpp:17
bool mRunning
Definition: importscpt.hpp:24
void load(ESM::ESMReader &esm)
Definition: importscpt.cpp:10
ESM::Script::SCHD mSCHD
Definition: importscpt.hpp:19
SCRI mSCRI
Definition: importscpt.hpp:22