docs: add plugin setup guide
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
#pragma once
|
||||
|
||||
#include "RE/B/BGSForcedLocRefType.h"
|
||||
#include "RE/B/BGSModelMaterialSwap.h"
|
||||
#include "RE/B/BGSNavmeshableObject.h"
|
||||
#include "RE/B/BGSPropertySheet.h"
|
||||
#include "RE/T/TESBoundObject.h"
|
||||
#include "RE/T/TESObjectSTATData.h"
|
||||
|
||||
namespace RE
|
||||
{
|
||||
class __declspec(novtable) TESObjectSTAT :
|
||||
public TESBoundObject, // 00
|
||||
public BGSModelMaterialSwap, // 68
|
||||
public BGSPropertySheet, // A8
|
||||
public BGSForcedLocRefType, // B8
|
||||
public BGSNavmeshableObject // C8
|
||||
{
|
||||
public:
|
||||
static constexpr auto RTTI{ RTTI::TESObjectSTAT };
|
||||
static constexpr auto VTABLE{ VTABLE::TESObjectSTAT };
|
||||
static constexpr auto FORM_ID{ ENUM_FORM_ID::kSTAT };
|
||||
|
||||
// members
|
||||
TESObjectSTATData data; // D0
|
||||
};
|
||||
static_assert(sizeof(TESObjectSTAT) == 0xE8);
|
||||
}
|
||||
Reference in New Issue
Block a user