37 lines
971 B
C++
37 lines
971 B
C++
#pragma once
|
|
|
|
#include "RE/B/BSFixedString.h"
|
|
#include "RE/B/BSTArray.h"
|
|
#include "RE/P/PerkData.h"
|
|
#include "RE/T/TESCondition.h"
|
|
#include "RE/T/TESDescription.h"
|
|
#include "RE/T/TESForm.h"
|
|
#include "RE/T/TESFullName.h"
|
|
#include "RE/T/TESIcon.h"
|
|
|
|
namespace RE
|
|
{
|
|
class BGSPerkEntry;
|
|
|
|
class __declspec(novtable) BGSPerk :
|
|
public TESForm, // 00
|
|
public TESFullName, // 20
|
|
public TESDescription, // 30
|
|
public TESIcon // 48
|
|
{
|
|
public:
|
|
static constexpr auto RTTI{ RTTI::BGSPerk };
|
|
static constexpr auto VTABLE{ VTABLE::BGSPerk };
|
|
static constexpr auto FORM_ID{ ENUM_FORM_ID::kPERK };
|
|
|
|
// members
|
|
PerkData data; // 58
|
|
TESCondition perkConditions; // 60
|
|
BSTArray<BGSPerkEntry*> perkEntries; // 68
|
|
BGSPerk* nextPerk; // 80
|
|
BGSSoundDescriptorForm* sound; // 88
|
|
BSFixedStringCS swfFile; // 90
|
|
};
|
|
static_assert(sizeof(BGSPerk) == 0x98);
|
|
}
|