1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 09:35:28 +00:00
OpenMW/components/esm/loadbook.hpp

32 lines
478 B
C++
Raw Normal View History

2012-09-23 22:11:08 +04:00
#ifndef OPENMW_ESM_BOOK_H
#define OPENMW_ESM_BOOK_H
2012-10-01 00:51:54 +04:00
#include <string>
namespace ESM
{
/*
* Books, magic scrolls, notes and so on
*/
2012-10-01 00:51:54 +04:00
class ESMReader;
class ESMWriter;
struct Book
{
struct BKDTstruct
{
2012-09-17 11:37:50 +04:00
float mWeight;
int mValue, mIsScroll, mSkillID, mEnchant;
};
2012-09-17 11:37:50 +04:00
BKDTstruct mData;
std::string mName, mModel, mIcon, mScript, mEnchant, mText;
2012-10-01 00:23:49 +04:00
std::string mId;
void load(ESMReader &esm);
void save(ESMWriter &esm);
};
}
#endif