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,28 @@
#pragma once
#include "RE/B/BSFixedString.h"
namespace RE
{
class TESIdleForm;
class ActionOutput
{
public:
static constexpr auto RTTI{ RTTI::ActionOutput };
enum class ACTION_RESULTS : std::uint32_t
{
kNotAllowed = 0xFFFFFFFF
};
// members
BSFixedString animEvent; // 00
BSFixedString targetAnimEvent; // 08
std::int32_t result; // 10
TESIdleForm* sequence; // 18
const TESIdleForm* animObjIdle; // 20
std::uint32_t sequenceIndex; // 28;
};
static_assert(sizeof(ActionOutput) == 0x30);
}