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

24 lines
556 B
C++

#pragma once
#include "RE/B/BSTArray.h"
#include "RE/B/BSTHashMap.h"
#include "RE/P/PipboyValue.h"
namespace RE
{
class PipboyArray :
public PipboyValue // 00
{
public:
static constexpr auto RTTI{ RTTI::PipboyArray };
static constexpr auto VTABLE{ VTABLE::PipboyArray };
// members
BSTArray<PipboyValue*> elements; // 18
BSTSet<std::uint32_t> addedElementIDs; // 30
BSTArray<std::uint32_t> removedElementIDs; // 60
bool newlyCreated; // 78
};
static_assert(sizeof(PipboyArray) == 0x80);
}