docs: add plugin setup guide
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#pragma once
|
||||
|
||||
#include "RE/T/TESForm.h"
|
||||
#include "RE/T/TESIcon.h"
|
||||
|
||||
namespace RE
|
||||
{
|
||||
class __declspec(novtable) BGSMenuIcon :
|
||||
public TESForm, // 00
|
||||
public TESIcon // 20
|
||||
{
|
||||
public:
|
||||
static constexpr auto RTTI{ RTTI::BGSMenuIcon };
|
||||
static constexpr auto VTABLE{ VTABLE::BGSMenuIcon };
|
||||
static constexpr auto FORM_ID{ ENUM_FORM_ID::kMICN };
|
||||
};
|
||||
static_assert(sizeof(BGSMenuIcon) == 0x30);
|
||||
}
|
||||
Reference in New Issue
Block a user