1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 18:49:54 +00:00
openmw-tes3mp/components/esm/loadappa.hpp

38 lines
483 B
C++
Raw Normal View History

#ifndef _ESM_APPA_H
#define _ESM_APPA_H
#include "esm_reader.hpp"
namespace ESM
{
/*
* Alchemist apparatus
*/
struct Apparatus
{
enum AppaType
{
MortarPestle = 0,
Albemic = 1,
Calcinator = 2,
Retort = 3
};
struct AADTstruct
{
int type;
float quality;
float weight;
int value;
};
AADTstruct data;
std::string model, icon, script, name;
void load(ESMReader &esm);
};
}
#endif