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,35 @@
#pragma once
#include "RE/D/DIRECTION_VAL.h"
#include "RE/I/IDEvent.h"
namespace RE
{
class __declspec(novtable) ThumbstickEvent :
public IDEvent // 00
{
public:
static constexpr auto RTTI{ RTTI::ThumbstickEvent };
static constexpr auto VTABLE{ VTABLE::ThumbstickEvent };
static constexpr auto TYPE{ INPUT_EVENT_TYPE::kThumbstick };
enum THUMBSTICK_ID : std::int32_t
{
kLeft = 0xB,
kRight = 0xC,
};
// NOLINTNEXTLINE(modernize-use-override)
virtual ~ThumbstickEvent() = default; // 00
// members
float xValue{ 0.0F }; // 38
float yValue{ 0.0F }; // 3C
DIRECTION_VAL prevDir{ DIRECTION_VAL::kNone }; // 40
DIRECTION_VAL currDir{ DIRECTION_VAL::kNone }; // 44
};
static_assert(sizeof(ThumbstickEvent) == 0x48);
extern template ThumbstickEvent* InputEvent::As() noexcept;
extern template const ThumbstickEvent* InputEvent::As() const noexcept;
}