mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:40:53 +01:00
13 lines
319 B
C++
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);
|