20 lines
389 B
C++
20 lines
389 B
C++
#pragma once
|
|
|
|
#include "RE/B/BGSKeyword.h"
|
|
|
|
namespace RE
|
|
{
|
|
class __declspec(novtable) BGSAction :
|
|
public BGSKeyword // 00
|
|
{
|
|
public:
|
|
static constexpr auto RTTI{ RTTI::BGSAction };
|
|
static constexpr auto VTABLE{ VTABLE::BGSAction };
|
|
static constexpr auto FORM_ID{ ENUM_FORM_ID::kAACT };
|
|
|
|
// members
|
|
std::uint32_t index; // 28
|
|
};
|
|
static_assert(sizeof(BGSAction) == 0x30);
|
|
}
|