F4MP/tiltedcode/Code/client/Games/Skyrim/Components/TESSpellList.h
Jous99 37b16f1547 code upload
codigo original de f4mp y tilted para referencias
2026-01-06 18:45:00 +01:00

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);