mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-28 00:15:06 +00:00
d1fb854521
esm typo esm typo
29 lines
398 B
C++
29 lines
398 B
C++
#ifndef OPENMW_ESSIMPORT_CREC_H
|
|
#define OPENMW_ESSIMPORT_CREC_H
|
|
|
|
#include "importinventory.hpp"
|
|
#include <components/esm3/aipackage.hpp>
|
|
|
|
namespace ESM
|
|
{
|
|
class ESMReader;
|
|
}
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
/// Creature changes
|
|
struct CREC
|
|
{
|
|
int mIndex;
|
|
|
|
Inventory mInventory;
|
|
ESM::AIPackageList mAiPackages;
|
|
|
|
void load(ESM::ESMReader& esm);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|