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,25 @@
#pragma once
namespace RE
{
template <class T>
class NiRect
{
public:
constexpr NiRect() = default;
constexpr NiRect(T a_left, T a_right, T a_top, T a_bottom) :
left(a_left), right(a_right), top(a_top), bottom(a_bottom)
{}
// members
T left; // 00
T right; // ??
T top; // ??
T bottom; // ??
};
extern template class NiRect<float>;
extern template class NiRect<std::int32_t>;
extern template class NiRect<std::uint32_t>;
}