Files
Commonwealth-Online-Public/plugin/lib/commonlibf4/include/RE/B/BSScript_Internal_FunctionMessage.h
T
2026-05-30 18:33:24 +12:00

35 lines
578 B
C++

#pragma once
#include "RE/B/BSTSmartPointer.h"
namespace RE
{
namespace BSScript
{
class Stack;
namespace Internal
{
class IFuncCallQuery;
class FunctionMessage
{
public:
enum class Type
{
kInvalid = 0,
kCall = 1,
kReturn = 2
};
// members
Type type; // 00
std::uint32_t pad04; // 04
BSTSmartPointer<Stack> stack; // 08
BSTSmartPointer<IFuncCallQuery> funcQuery; // 10
};
static_assert(sizeof(FunctionMessage) == 0x18);
}
}
}