docs: add plugin setup guide

This commit is contained in:
2026-05-30 18:33:24 +12:00
parent f3db41c402
commit b61043a3fe
1776 changed files with 122386 additions and 2 deletions
@@ -0,0 +1,47 @@
#pragma once
#include "RE/N/NiTDefaultAllocator.h"
namespace RE
{
template <class T>
class NiTListItem
{
public:
NiTListItem* next; // 00
NiTListItem* prev; // 08
T element; // 10
};
template <class Allocator, class T>
class NiTListBase
{
public:
class AntiBloatAllocator :
public Allocator
{
public:
// members
std::uint32_t size; // ??
};
// members
NiTListItem<T>* head; // 00
NiTListItem<T>* tail; // 08
AntiBloatAllocator allocator; // 10
};
template <class Allocator, class T>
class NiTPointerListBase :
public NiTListBase<Allocator, T> // 00
{
public:
};
template <class T>
class NiTList :
public NiTPointerListBase<NiTDefaultAllocator<T>, T> // 00
{
public:
};
}