OpenMW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
cell.hpp
Go to the documentation of this file.
1 #ifndef CSM_WOLRD_CELL_H
2 #define CSM_WOLRD_CELL_H
3 
4 #include <vector>
5 #include <string>
6 
8 
9 namespace CSMWorld
10 {
15  struct Cell : public ESM::Cell
16  {
17  std::string mId;
18 
19  void load (ESM::ESMReader &esm, bool &isDeleted);
20 
21  };
22 }
23 
24 #endif
Definition: esmreader.hpp:21
std::string mId
Definition: cell.hpp:17
void load(ESM::ESMReader &esm, bool &isDeleted)
Definition: cell.cpp:5
Definition: loadcell.hpp:64
Wrapper for Cell record.
Definition: cell.hpp:15