docs: add plugin setup guide
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user