mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 19:19:55 +00:00
26 lines
317 B
C++
26 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
|