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