mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 22:50:54 +01:00
21 lines
317 B
C
21 lines
317 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <Components/BaseFormComponent.h>
|
||
|
|
|
||
|
|
struct TESForm;
|
||
|
|
|
||
|
|
struct TESContainer : BaseFormComponent
|
||
|
|
{
|
||
|
|
struct Entry
|
||
|
|
{
|
||
|
|
uint32_t count;
|
||
|
|
TESForm* form;
|
||
|
|
void* data;
|
||
|
|
};
|
||
|
|
|
||
|
|
int64_t GetItemCount(TESForm* apItem) const noexcept;
|
||
|
|
|
||
|
|
Entry** entries;
|
||
|
|
uint32_t count;
|
||
|
|
};
|