mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:40:53 +01:00
11 lines
185 B
C
11 lines
185 B
C
#pragma once
|
|
|
|
struct hkbSymbolIdMap
|
|
{
|
|
virtual ~hkbSymbolIdMap();
|
|
|
|
uint8_t pad8[0x20 - 0x8];
|
|
void* pointer20;
|
|
};
|
|
|
|
static_assert(offsetof(hkbSymbolIdMap, pointer20) == 0x20);
|