16 lines
333 B
C++
16 lines
333 B
C++
#pragma once
|
|
|
|
#include "RE/T/TESModel.h"
|
|
|
|
namespace RE
|
|
{
|
|
class __declspec(novtable) BGSBehaviorGraphModel :
|
|
public TESModel // 00
|
|
{
|
|
public:
|
|
static constexpr auto RTTI{ RTTI::BGSBehaviorGraphModel };
|
|
static constexpr auto VTABLE{ VTABLE::BGSBehaviorGraphModel };
|
|
};
|
|
static_assert(sizeof(BGSBehaviorGraphModel) == 0x30);
|
|
}
|