Files
Alphanium/CppSDK/SDK/SlateContent_ActionHandlerPanel_functions.cpp

138 lines
4.4 KiB
C++

#pragma once
/*
* SDK generated by Dumper-7
*
* https://github.com/Encryqed/Dumper-7
*/
// Package: SlateContent_ActionHandlerPanel
#include "Basic.hpp"
#include "SlateContent_ActionHandlerPanel_classes.hpp"
#include "SlateContent_ActionHandlerPanel_parameters.hpp"
#pragma pack(push, 0x4)
namespace SDK
{
// Function SlateContent_ActionHandlerPanel.SlateContent_ActionHandlerPanel_C.ExecuteUbergraph_SlateContent_ActionHandlerPanel
// ()
// Parameters:
// int32 EntryPoint (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
void USlateContent_ActionHandlerPanel_C::ExecuteUbergraph_SlateContent_ActionHandlerPanel(int32 EntryPoint)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("SlateContent_ActionHandlerPanel_C", "ExecuteUbergraph_SlateContent_ActionHandlerPanel");
Params::SlateContent_ActionHandlerPanel_C_ExecuteUbergraph_SlateContent_ActionHandlerPanel Parms{};
Parms.EntryPoint = EntryPoint;
UObject::ProcessEvent(Func, &Parms);
}
// Function SlateContent_ActionHandlerPanel.SlateContent_ActionHandlerPanel_C.HandleOnSlateWidgetClosed
// (BlueprintCallable, BlueprintEvent)
void USlateContent_ActionHandlerPanel_C::HandleOnSlateWidgetClosed()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("SlateContent_ActionHandlerPanel_C", "HandleOnSlateWidgetClosed");
UObject::ProcessEvent(Func, nullptr);
}
// Function SlateContent_ActionHandlerPanel.SlateContent_ActionHandlerPanel_C.Construct
// (BlueprintCosmetic, Event, Public, BlueprintEvent)
void USlateContent_ActionHandlerPanel_C::Construct()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("SlateContent_ActionHandlerPanel_C", "Construct");
UObject::ProcessEvent(Func, nullptr);
}
// Function SlateContent_ActionHandlerPanel.SlateContent_ActionHandlerPanel_C.InitializeSlateContent
// (Public, BlueprintCallable, BlueprintEvent)
// Parameters:
// EFortLegacySlateWidget Slate_Widget_Type (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
void USlateContent_ActionHandlerPanel_C::InitializeSlateContent(EFortLegacySlateWidget Slate_Widget_Type)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("SlateContent_ActionHandlerPanel_C", "InitializeSlateContent");
Params::SlateContent_ActionHandlerPanel_C_InitializeSlateContent Parms{};
Parms.Slate_Widget_Type = Slate_Widget_Type;
UObject::ProcessEvent(Func, &Parms);
}
// Function SlateContent_ActionHandlerPanel.SlateContent_ActionHandlerPanel_C.OnHandleAction
// (Event, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintEvent)
// Parameters:
// struct FEventReply* Result (Parm, OutParm)
// bool* bPassThrough (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor)
void USlateContent_ActionHandlerPanel_C::OnHandleAction(struct FEventReply* Result, bool* bPassThrough)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("SlateContent_ActionHandlerPanel_C", "OnHandleAction");
Params::SlateContent_ActionHandlerPanel_C_OnHandleAction Parms{};
UObject::ProcessEvent(Func, &Parms);
if (Result != nullptr)
*Result = std::move(Parms.Result);
if (bPassThrough != nullptr)
*bPassThrough = Parms.bPassThrough;
}
// Function SlateContent_ActionHandlerPanel.SlateContent_ActionHandlerPanel_C.SetSizeBoxOverrides
// (Public, BlueprintCallable, BlueprintEvent)
// Parameters:
// float InWidth (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
// float InHeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
void USlateContent_ActionHandlerPanel_C::SetSizeBoxOverrides(float InWidth, float InHeight)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("SlateContent_ActionHandlerPanel_C", "SetSizeBoxOverrides");
Params::SlateContent_ActionHandlerPanel_C_SetSizeBoxOverrides Parms{};
Parms.InWidth = InWidth;
Parms.InHeight = InHeight;
UObject::ProcessEvent(Func, &Parms);
}
}
#pragma pack(pop)