mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 12:20:41 +00:00
27 lines
317 B
C++
27 lines
317 B
C++
#ifndef OPENMW_ESSIMPORT_CREC_H
|
|
#define OPENMW_ESSIMPORT_CREC_H
|
|
|
|
#include "importinventory.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
class ESMReader;
|
|
}
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
/// Creature changes
|
|
struct CREC
|
|
{
|
|
int mIndex;
|
|
|
|
Inventory mInventory;
|
|
|
|
void load(ESM::ESMReader& esm);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|