mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 21:50:53 +01:00
13 lines
261 B
C
13 lines
261 B
C
#pragma once
|
|
|
|
#include "TESForm.h"
|
|
|
|
struct TESPackage : TESForm
|
|
{
|
|
uint8_t unk20[0xD8 - 0x20];
|
|
int32_t ePROCEDURE_TYPE;
|
|
uint32_t uiRefCount;
|
|
};
|
|
|
|
static_assert(offsetof(TESPackage, ePROCEDURE_TYPE) == 0xD8);
|
|
static_assert(sizeof(TESPackage) == 0xE0);
|