1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00
OpenMW/apps/essimporter/importcrec.hpp

30 lines
421 B
C++
Raw Normal View History

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