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