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

14 lines
173 B
C++

#pragma once
namespace RE
{
class CachedValueData
{
public:
// members
float value; // 0
bool dirty; // 4
};
static_assert(sizeof(CachedValueData) == 0x8);
}