OpenMW
apps/opencs/model/world/ref.hpp
Go to the documentation of this file.
00001 #ifndef CSM_WOLRD_REF_H
00002 #define CSM_WOLRD_REF_H
00003 
00004 #include <components/esm/cellref.hpp>
00005 
00006 namespace ESM
00007 {
00008     class ESMReader;
00009 }
00010 
00011 namespace CSMWorld
00012 {
00013     class Cell;
00014 
00016     struct CellRef : public ESM::CellRef
00017     {
00018         std::string mId;
00019         std::string mCell;
00020 
00021         void load (ESM::ESMReader &esm, Cell& cell, const std::string& id);
00023     };
00024 }
00025 
00026 #endif