You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw-tes3mp/components/esm/loadappa.hpp

40 lines
586 B
C++

#ifndef OPENMW_ESM_APPA_H
#define OPENMW_ESM_APPA_H
#include "record.hpp"
namespace ESM
{
/*
* Alchemist apparatus
*/
struct Apparatus : public Record
{
enum AppaType
{
MortarPestle = 0,
Albemic = 1,
Calcinator = 2,
Retort = 3
};
struct AADTstruct
{
int mType;
float mQuality;
float mWeight;
int mValue;
};
AADTstruct mData;
std::string mModel, mIcon, mScript, mName;
void load(ESMReader &esm);
void save(ESMWriter &esm);
int getName() { return REC_APPA; }
};
}
#endif