mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 15:19:55 +00:00
28 lines
447 B
C++
28 lines
447 B
C++
#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
|
|
{
|
|
float mWeight;
|
|
int mValue, mIsScroll, mSkillID, mEnchant;
|
|
};
|
|
|
|
BKDTstruct mData;
|
|
std::string mName, mModel, mIcon, mScript, mEnchant, mText;
|
|
std::string mId;
|
|
|
|
void load(ESMReader &esm);
|
|
void save(ESMWriter &esm);
|
|
};
|
|
}
|
|
#endif
|