18 lines
344 B
C++
18 lines
344 B
C++
#pragma once
|
|
|
|
#include "RE/B/BSGFxFunctionBase.h"
|
|
#include "RE/B/BSTArray.h"
|
|
|
|
namespace RE
|
|
{
|
|
class UsesBSGFXFunctionHandler
|
|
{
|
|
public:
|
|
static constexpr auto RTTI{ RTTI::UsesBSGFXFunctionHandler };
|
|
|
|
// members
|
|
BSTArray<std::unique_ptr<BSGFxFunctionBase>> functions; // 00
|
|
};
|
|
static_assert(sizeof(UsesBSGFXFunctionHandler) == 0x18);
|
|
}
|