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,22 @@
#pragma once
#include "Scaleform/P/Ptr.h"
namespace RE
{
class IMenu;
class UIMessage;
class UIMenuEntry
{
public:
using Create_t = IMenu*(const UIMessage&);
using StaticUpdate_t = void();
// members
Scaleform::Ptr<IMenu> menu; // 00
Create_t* create; // 08
StaticUpdate_t* staticUpdate{ nullptr }; // 10
};
static_assert(sizeof(UIMenuEntry) == 0x18);
}