F4MP/tiltedcode/Code/client/Games/Skyrim/Havok/hkbVariableValueSet.h
Jous99 37b16f1547 code upload
codigo original de f4mp y tilted para referencias
2026-01-06 18:45:00 +01:00

13 lines
319 B
C++

#pragma once
template <class T> struct hkbVariableValueSet
{
virtual ~hkbVariableValueSet();
uint8_t pad8[0x8]; // 8
T* data; // 10
uint32_t size; // 18
};
static_assert(offsetof(hkbVariableValueSet<int>, data) == 0x10);
static_assert(offsetof(hkbVariableValueSet<int>, size) == 0x18);