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