22 lines
529 B
C++
22 lines
529 B
C++
#pragma once
|
|
|
|
#include "RE/B/BGSStoryManagerBranchNode.h"
|
|
|
|
namespace RE
|
|
{
|
|
class BGSRegisteredStoryEvent;
|
|
|
|
class __declspec(novtable) BGSStoryManagerEventNode :
|
|
public BGSStoryManagerBranchNode // 00
|
|
{
|
|
public:
|
|
static constexpr auto RTTI{ RTTI::BGSStoryManagerEventNode };
|
|
static constexpr auto VTABLE{ VTABLE::BGSStoryManagerEventNode };
|
|
static constexpr auto FORM_ID{ ENUM_FORM_ID::kSMEN };
|
|
|
|
// members
|
|
const BGSRegisteredStoryEvent* event; // 60
|
|
};
|
|
static_assert(sizeof(BGSStoryManagerEventNode) == 0x68);
|
|
}
|