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,21 @@
#pragma once
namespace RE
{
class DECAL_DATA_DATA
{
public:
// members
float decalMinWidth; // 00
float decalMaxWidth; // 04
float decalMinHeight; // 08
float decalMaxHeight; // 0C
float depth; // 10
float shininess; // 14
float parallaxScale; // 18
std::int8_t parallaxPasses; // 1C
std::int8_t flags; // 1D
std::uint32_t color; // 20
};
static_assert(sizeof(DECAL_DATA_DATA) == 0x24);
}