You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
397 B
C++
29 lines
397 B
C++
#ifndef OPENMW_ESSIMPORT_CREC_H
|
|
#define OPENMW_ESSIMPORT_CREC_H
|
|
|
|
#include "importinventory.hpp"
|
|
#include <components/esm/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
|