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

15 lines
270 B
C++

#pragma once
#include "RE/B/BSTHashMap.h"
#include "RE/I/IPipboyThrottledValue.h"
namespace RE
{
class PipboyThrottleManager
{
public:
BSTHashMap<std::uint32_t, IPipboyThrottledValue*> valueMap; // 00
};
static_assert(sizeof(PipboyThrottleManager) == 0x30);
}