#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 elements; // 18 BSTSet addedElementIDs; // 30 BSTArray removedElementIDs; // 60 bool newlyCreated; // 78 }; static_assert(sizeof(PipboyArray) == 0x80); }