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.
23 lines
254 B
C++
23 lines
254 B
C++
10 years ago
|
#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
|