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.
38 lines
483 B
C++
38 lines
483 B
C++
#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
|