mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:40:53 +01:00
26 lines
482 B
C
26 lines
482 B
C
#pragma once
|
|
|
|
#include <Components/BaseFormComponent.h>
|
|
|
|
struct SpellItem;
|
|
struct TESForm;
|
|
struct TESShout;
|
|
|
|
struct TESSpellList : BaseFormComponent
|
|
{
|
|
struct Lists
|
|
{
|
|
SpellItem** spells{nullptr};
|
|
TESForm** unk4{nullptr};
|
|
TESShout** shouts{nullptr};
|
|
uint32_t spellCount{0};
|
|
uint32_t unk4Count{0};
|
|
uint32_t shoultCount{0};
|
|
};
|
|
|
|
Lists* lists;
|
|
|
|
void Initialize();
|
|
};
|
|
|
|
static_assert(sizeof(TESSpellList::Lists) == 0x28);
|