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,28 @@
#pragma once
#include "RE/B/BGSHazardData.h"
#include "RE/B/BGSPreloadable.h"
#include "RE/T/TESBoundObject.h"
#include "RE/T/TESFullName.h"
#include "RE/T/TESImageSpaceModifiableForm.h"
#include "RE/T/TESModel.h"
namespace RE
{
class __declspec(novtable) BGSHazard :
public TESBoundObject, // 000
public TESFullName, // 068
public TESModel, // 078
public BGSPreloadable, // 0A8
public TESImageSpaceModifiableForm // 0B0
{
public:
static constexpr auto RTTI{ RTTI::BGSHazard };
static constexpr auto VTABLE{ VTABLE::BGSHazard };
static constexpr auto FORM_ID{ ENUM_FORM_ID::kHAZD };
// members
BGSHazardData data; // 0C0
};
static_assert(sizeof(BGSHazard) == 0x108);
}