Files
Commonwealth-Online-Public/plugin/lib/commonlibf4/include/RE/E/ExtraFactionChanges.h
T
2026-05-30 18:33:24 +12:00

23 lines
667 B
C++

#pragma once
#include "RE/B/BSExtraData.h"
#include "RE/F/FACTION_RANK.h"
namespace RE
{
class __declspec(novtable) ExtraFactionChanges :
public BSExtraData // 00
{
public:
static constexpr auto RTTI{ RTTI::ExtraFactionChanges };
static constexpr auto VTABLE{ VTABLE::ExtraFactionChanges };
static constexpr auto TYPE{ EXTRA_DATA_TYPE::kFactionChanges };
// members
bool removeCrimeFaction; // 18
BSTArray<FACTION_RANK, BSTArrayHeapAllocator> factionChanges; // 20
TESFaction* crimeFaction; // 38
};
static_assert(sizeof(ExtraFactionChanges) == 0x40);
}