Files
UnrealEvent/Aeon-740/SDK/SocialPanel_functions.cpp
2024-10-18 01:01:36 +01:00

156 lines
4.5 KiB
C++

#pragma once
/*
* SDK generated by Dumper-7
*
* https://github.com/Encryqed/Dumper-7
*/
// Package: SocialPanel
#include "Basic.hpp"
#include "SocialPanel_classes.hpp"
#include "SocialPanel_parameters.hpp"
namespace SDK
{
// Function SocialPanel.SocialPanel_C.ExecuteUbergraph_SocialPanel
// (Final, UbergraphFunction)
// Parameters:
// int32 EntryPoint (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
void USocialPanel_C::ExecuteUbergraph_SocialPanel(int32 EntryPoint)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("SocialPanel_C", "ExecuteUbergraph_SocialPanel");
Params::SocialPanel_C_ExecuteUbergraph_SocialPanel Parms{};
Parms.EntryPoint = EntryPoint;
UObject::ProcessEvent(Func, &Parms);
}
// Function SocialPanel.SocialPanel_C.PopSocialPanel
// (BlueprintCallable, BlueprintEvent)
void USocialPanel_C::PopSocialPanel()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("SocialPanel_C", "PopSocialPanel");
UObject::ProcessEvent(Func, nullptr);
}
// Function SocialPanel.SocialPanel_C.ClosePanel
// (Event, Protected, BlueprintEvent)
void USocialPanel_C::ClosePanel()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("SocialPanel_C", "ClosePanel");
UObject::ProcessEvent(Func, nullptr);
}
// Function SocialPanel.SocialPanel_C.OnActivated
// (Event, Protected, BlueprintEvent)
void USocialPanel_C::OnActivated()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("SocialPanel_C", "OnActivated");
UObject::ProcessEvent(Func, nullptr);
}
// Function SocialPanel.SocialPanel_C.BndEvt__SocialPanel_TopBarExtension_K2Node_ComponentBoundEvent_0_CommonButtonClicked__DelegateSignature
// (BlueprintEvent)
// Parameters:
// class UCommonButton* Button (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
void USocialPanel_C::BndEvt__SocialPanel_TopBarExtension_K2Node_ComponentBoundEvent_0_CommonButtonClicked__DelegateSignature(class UCommonButton* Button)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("SocialPanel_C", "BndEvt__SocialPanel_TopBarExtension_K2Node_ComponentBoundEvent_0_CommonButtonClicked__DelegateSignature");
Params::SocialPanel_C_BndEvt__SocialPanel_TopBarExtension_K2Node_ComponentBoundEvent_0_CommonButtonClicked__DelegateSignature Parms{};
Parms.Button = Button;
UObject::ProcessEvent(Func, &Parms);
}
// Function SocialPanel.SocialPanel_C.OnMouseButtonDown_0
// (Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintEvent)
// Parameters:
// struct FGeometry MyGeometry (BlueprintVisible, BlueprintReadOnly, Parm, IsPlainOldData, NoDestructor)
// struct FPointerEvent MouseEvent (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, OutParm, ReferenceParm)
// struct FEventReply ReturnValue (Parm, OutParm, ReturnParm)
struct FEventReply USocialPanel_C::OnMouseButtonDown_0(const struct FGeometry& MyGeometry, const struct FPointerEvent& MouseEvent)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("SocialPanel_C", "OnMouseButtonDown_0");
Params::SocialPanel_C_OnMouseButtonDown_0 Parms{};
Parms.MyGeometry = std::move(MyGeometry);
Parms.MouseEvent = std::move(MouseEvent);
UObject::ProcessEvent(Func, &Parms);
return Parms.ReturnValue;
}
// Function SocialPanel.SocialPanel_C.ClosePanelAfterAnimation
// (Public, BlueprintCallable, BlueprintEvent)
void USocialPanel_C::ClosePanelAfterAnimation()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("SocialPanel_C", "ClosePanelAfterAnimation");
UObject::ProcessEvent(Func, nullptr);
}
// Function SocialPanel.SocialPanel_C.Play Panel Animation Sound
// (Public, BlueprintCallable, BlueprintEvent)
void USocialPanel_C::Play_Panel_Animation_Sound()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("SocialPanel_C", "Play Panel Animation Sound");
UObject::ProcessEvent(Func, nullptr);
}
}