mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 21:50:53 +01:00
19 lines
268 B
C
19 lines
268 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <Forms/TESForm.h>
|
||
|
|
#include <Misc/BSString.h>
|
||
|
|
|
||
|
|
struct TESGlobal : TESForm
|
||
|
|
{
|
||
|
|
BSString unk14;
|
||
|
|
uint8_t unk1C;
|
||
|
|
uint8_t pad[3];
|
||
|
|
union
|
||
|
|
{
|
||
|
|
uint32_t i;
|
||
|
|
float f;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
static_assert(offsetof(TESGlobal, f) == 0x34);
|