OpenMW
components/esm/spelllist.hpp
Go to the documentation of this file.
00001 #ifndef OPENMW_ESM_SPELLLIST_H
00002 #define OPENMW_ESM_SPELLLIST_H
00003 
00004 #include <vector>
00005 #include <string>
00006 
00007 namespace ESM
00008 {
00009     class ESMReader;
00010     class ESMWriter;
00011 
00015     struct SpellList
00016     {
00017         std::vector<std::string> mList;
00018 
00019         void load(ESMReader &esm);
00020         void save(ESMWriter &esm) const;
00021     };
00022 }
00023 
00024 #endif
00025