1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-04 02:41:19 +00:00
OpenMW/apps/essimporter/importcrec.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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 14:21:12 +00:00
#include <cstdint>
namespace ESM
{
class ESMReader;
}
namespace ESSImport
{
/// Creature changes
struct CREC
{
2023-12-17 13:03:45 +00:00
int32_t mIndex;
Inventory mInventory;
2015-02-14 11:25:52 +00:00
ESM::AIPackageList mAiPackages;
void load(ESM::ESMReader& esm);
};
}
#endif