docs: add plugin setup guide
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#pragma once
|
||||
|
||||
#include "RE/T/TESObjectACTI.h"
|
||||
|
||||
namespace RE
|
||||
{
|
||||
class __declspec(novtable) BGSTalkingActivator :
|
||||
public TESObjectACTI // 000
|
||||
{
|
||||
public:
|
||||
static constexpr auto RTTI{ RTTI::BGSTalkingActivator };
|
||||
static constexpr auto VTABLE{ VTABLE::BGSTalkingActivator };
|
||||
static constexpr auto FORM_ID{ ENUM_FORM_ID::kTACT };
|
||||
|
||||
// add
|
||||
virtual bool GetReflectedByAutoWater() { return false; } // 67
|
||||
|
||||
// members
|
||||
TESObjectREFR* tempRef; // 148
|
||||
BGSVoiceType* voiceType; // 150
|
||||
};
|
||||
static_assert(sizeof(BGSTalkingActivator) == 0x158);
|
||||
}
|
||||
Reference in New Issue
Block a user