openmw-tes3coop/components/esm/loadbook.hpp

30 lines
474 B
C++
Raw Normal View History

#ifndef _ESM_BOOK_H
#define _ESM_BOOK_H
#include "record.hpp"
namespace ESM
{
/*
* Books, magic scrolls, notes and so on
*/
struct Book : public Record
{
struct BKDTstruct
{
2012-09-17 07:37:50 +00:00
float mWeight;
int mValue, mIsScroll, mSkillID, mEnchant;
};
2012-09-17 07:37:50 +00:00
BKDTstruct mData;
std::string mName, mModel, mIcon, mScript, mEnchant, mText;
void load(ESMReader &esm);
void save(ESMWriter &esm);
int getName() { return REC_BOOK; }
};
}
#endif