mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 21:50:53 +01:00
20 lines
317 B
C
20 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;
|
|
};
|