OpenMW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
importques.hpp
Go to the documentation of this file.
1 #ifndef OPENMW_ESSIMPORT_IMPORTQUES_H
2 #define OPENMW_ESSIMPORT_IMPORTQUES_H
3 
4 #include <string>
5 #include <vector>
6 
7 namespace ESM
8 {
9  class ESMReader;
10 }
11 
12 namespace ESSImport
13 {
14 
18  struct QUES
19  {
20  std::string mName; // NAME, should be assigned from outside as usual
21  std::vector<std::string> mInfo; // list of journal entries for the quest
22 
23  void load(ESM::ESMReader& esm);
24  };
25 
26 }
27 
28 #endif
std::string mName
Definition: importques.hpp:20
Definition: esmreader.hpp:21
Definition: importques.hpp:18
std::vector< std::string > mInfo
Definition: importques.hpp:21
void load(ESM::ESMReader &esm)
Definition: importques.cpp:8