OpenMW
components/esm/loaddoor.hpp
Go to the documentation of this file.
00001 #ifndef OPENMW_ESM_DOOR_H
00002 #define OPENMW_ESM_DOOR_H
00003 
00004 #include <string>
00005 
00006 namespace ESM
00007 {
00008 
00009 class ESMReader;
00010 class ESMWriter;
00011 
00012 struct Door
00013 {
00014     static unsigned int sRecordId;
00015 
00016     std::string mId, mName, mModel, mScript, mOpenSound, mCloseSound;
00017 
00018     void load(ESMReader &esm);
00019     void save(ESMWriter &esm) const;
00020 
00021     void blank();
00023 };
00024 }
00025 #endif