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.
38 lines
614 B
C++
38 lines
614 B
C++
#ifndef OPENMW_ESSIMPORT_NPCC_H
|
|
#define OPENMW_ESSIMPORT_NPCC_H
|
|
|
|
#include <components/esm/loadcont.hpp>
|
|
|
|
#include <components/esm/aipackage.hpp>
|
|
|
|
#include "importinventory.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
class ESMReader;
|
|
}
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
struct NPCC
|
|
{
|
|
struct NPDT
|
|
{
|
|
unsigned char mDisposition;
|
|
unsigned char unknown;
|
|
unsigned char mReputation;
|
|
unsigned char unknown2;
|
|
int mIndex;
|
|
} mNPDT;
|
|
|
|
Inventory mInventory;
|
|
ESM::AIPackageList mAiPackages;
|
|
|
|
void load(ESM::ESMReader &esm);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|