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,33 @@
#pragma once
#include "RE/B/BSNavmeshInfoMap.h"
#include "RE/B/BSTArray.h"
#include "RE/B/BSTHashMap.h"
#include "RE/P/PrecomputedNavmeshInfoPathMap.h"
#include "RE/T/TESForm.h"
namespace RE
{
class BSNavmeshInfo;
class NavMeshInfo;
class __declspec(novtable) NavMeshInfoMap :
public TESForm, // 000
public BSNavmeshInfoMap, // 020
public PrecomputedNavmeshInfoPathMap // 030
{
public:
static constexpr auto RTTI{ RTTI::NavMeshInfoMap };
static constexpr auto VTABLE{ VTABLE::NavMeshInfoMap };
static constexpr auto FORM_ID{ ENUM_FORM_ID::kNAVI };
// members
bool updateAll; // 078
BSTArray<BSNavmeshInfo*> staleNavmeshInfos; // 080
BSTHashMap<std::uint32_t, NavMeshInfo*> infoMap; // 098
BSTHashMap<std::size_t, BSTArray<BSNavmeshInfo*>*> ckNavMeshInfoMap; // 0C8
BSReadWriteLock mapLock; // 0F8
bool init; // 100
};
static_assert(sizeof(NavMeshInfoMap) == 0x108);
}