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

23 lines
374 B
C++

#pragma once
namespace RE
{
namespace BSSystemFileStreamer
{
class ID
{
public:
// members
std::uint32_t id; // 0
};
static_assert(sizeof(ID) == 0x4);
inline void UncacheAll(bool a_block)
{
using func_t = decltype(&UncacheAll);
static REL::Relocation<func_t> func{ RE::ID::BSSystemFileStreamer::UncacheAll };
return func(a_block);
}
}
}