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,30 @@
#pragma once
#include "RE/T/TESForm.h"
#include "RE/T/TESFullName.h"
#include "RE/T/TESTexture.h"
namespace RE
{
class __declspec(novtable) TESEyes :
public TESForm, // 00
public TESFullName, // 20
public TESTexture // 30
{
public:
static constexpr auto RTTI{ RTTI::TESEyes };
static constexpr auto VTABLE{ VTABLE::TESEyes };
static constexpr auto FORM_ID{ ENUM_FORM_ID::kEYES };
enum class Flags : std::int8_t
{
kPlayable = 0x1,
kMale = 0x2,
kFemale = 0x4,
};
// members
std::int8_t flags; // 40
};
static_assert(sizeof(TESEyes) == 0x48);
}