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

29 lines
447 B
C++
Raw Normal View History

2012-09-23 18:11:08 +00:00
#ifndef OPENMW_ESM_BOOK_H
#define OPENMW_ESM_BOOK_H
#include "record.hpp"
namespace ESM
{
/*
* Books, magic scrolls, notes and so on
*/
struct Book
{
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;
2012-09-30 20:23:49 +00:00
std::string mId;
void load(ESMReader &esm);
void save(ESMWriter &esm);
};
}
#endif