2015-01-16 23:11:36 +00:00
|
|
|
#ifndef OPENMW_ESSIMPORT_CREC_H
|
|
|
|
#define OPENMW_ESSIMPORT_CREC_H
|
|
|
|
|
2015-01-18 21:52:11 +00:00
|
|
|
#include "importinventory.hpp"
|
2022-01-22 14:58:41 +00:00
|
|
|
#include <components/esm3/aipackage.hpp>
|
2015-01-18 21:52:11 +00:00
|
|
|
|
2015-01-16 23:11:36 +00:00
|
|
|
namespace ESM
|
|
|
|
{
|
|
|
|
class ESMReader;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace ESSImport
|
|
|
|
{
|
|
|
|
|
|
|
|
/// Creature changes
|
|
|
|
struct CREC
|
|
|
|
{
|
|
|
|
int mIndex;
|
|
|
|
|
2015-01-18 21:52:11 +00:00
|
|
|
Inventory mInventory;
|
2015-02-14 11:25:52 +00:00
|
|
|
ESM::AIPackageList mAiPackages;
|
2015-01-18 21:52:11 +00:00
|
|
|
|
2015-01-16 23:11:36 +00:00
|
|
|
void load(ESM::ESMReader& esm);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|