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.
30 lines
468 B
C++
30 lines
468 B
C++
10 years ago
|
#ifndef OPENMW_ESSIMPORT_NPCC_H
|
||
|
#define OPENMW_ESSIMPORT_NPCC_H
|
||
|
|
||
|
#include <components/esm/loadnpc.hpp>
|
||
|
#include <components/esm/loadcont.hpp>
|
||
|
|
||
|
namespace ESM
|
||
|
{
|
||
|
class ESMReader;
|
||
|
}
|
||
|
|
||
|
namespace ESSImport
|
||
|
{
|
||
|
|
||
|
struct NPCC : public ESM::NPC
|
||
|
{
|
||
|
struct NPDT
|
||
|
{
|
||
|
unsigned char unknown[2];
|
||
|
unsigned char mReputation;
|
||
|
unsigned char unknown2[5];
|
||
|
} mNPDT;
|
||
|
|
||
|
void load(ESM::ESMReader &esm);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|