1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-06 00:55:50 +00:00
OpenMW/apps/essimporter/importnpcc.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
598 B
C++
Raw Normal View History

#ifndef OPENMW_ESSIMPORT_NPCC_H
#define OPENMW_ESSIMPORT_NPCC_H
#include <components/esm3/aipackage.hpp>
2023-12-17 14:21:12 +00:00
#include <cstdint>
#include "importinventory.hpp"
namespace ESM
{
class ESMReader;
}
namespace ESSImport
{
struct NPCC
{
struct NPDT
{
2015-01-20 17:22:02 +00:00
unsigned char mDisposition;
unsigned char unknown;
unsigned char mReputation;
2015-01-20 19:18:30 +00:00
unsigned char unknown2;
2023-12-17 13:03:45 +00:00
int32_t mIndex;
} mNPDT;
Inventory mInventory;
2015-02-14 11:25:52 +00:00
ESM::AIPackageList mAiPackages;
void load(ESM::ESMReader& esm);
};
}
#endif