mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 22:40:52 +01:00
17 lines
457 B
C
17 lines
457 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <Forms/TESBoundAnimObject.h>
|
||
|
|
#include <Components/TESModelTextureSwap.h>
|
||
|
|
#include <Components/TESLeveledList.h>
|
||
|
|
|
||
|
|
struct TESLevCharacter : TESBoundAnimObject
|
||
|
|
{
|
||
|
|
// Components
|
||
|
|
TESLeveledList leveledList;
|
||
|
|
TESModelTextureSwap modelTextureSwap;
|
||
|
|
};
|
||
|
|
|
||
|
|
static_assert(offsetof(TESLevCharacter, leveledList) == 0x30);
|
||
|
|
static_assert(offsetof(TESLevCharacter, modelTextureSwap) == 0x58);
|
||
|
|
static_assert(sizeof(TESLevCharacter) == 0x90);
|