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,40 @@
#pragma once
#include "RE/B/BGSLocalizedString.h"
#include "RE/B/BGSTypedKeywordValue.h"
namespace RE
{
class TESResponse
{
public:
class RespData
{
std::uint16_t percent;
std::uint8_t responseID;
bool useEmotion;
};
static_assert(sizeof(RespData) == 0x4);
const char* GetResponseText()
{
using func_t = decltype(&TESResponse::GetResponseText);
static REL::Relocation<func_t> func{ ID::TESResponse::GetResponseText };
return func(this);
}
TESIdleForm* GetSpeakerIdle()
{
using func_t = decltype(&TESResponse::GetSpeakerIdle);
static REL::Relocation<func_t> func{ ID::TESResponse::GetSpeakerIdle };
return func(this);
}
// members
BGSLocalizedString responseText;
TESResponse* pNext;
RespData data;
BGSTypedKeywordValue<KeywordType::kAnimFaceArchetype> faceArcheType;
};
static_assert(sizeof(TESResponse) == 0x18);
}