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

207 lines
4.9 KiB
C++

#pragma once
/*
* SDK generated by Dumper-7
*
* https://github.com/Encryqed/Dumper-7
*/
// Package: Lightbox
#include "Basic.hpp"
#include "Lightbox_classes.hpp"
#include "Lightbox_parameters.hpp"
namespace SDK
{
// Function Lightbox.Lightbox_C.IntroEnded__DelegateSignature
// (Public, Delegate, BlueprintCallable, BlueprintEvent)
void ULightbox_C::IntroEnded__DelegateSignature()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("Lightbox_C", "IntroEnded__DelegateSignature");
UObject::ProcessEvent(Func, nullptr);
}
// Function Lightbox.Lightbox_C.OutroEnded__DelegateSignature
// (Public, Delegate, BlueprintCallable, BlueprintEvent)
void ULightbox_C::OutroEnded__DelegateSignature()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("Lightbox_C", "OutroEnded__DelegateSignature");
UObject::ProcessEvent(Func, nullptr);
}
// Function Lightbox.Lightbox_C.ExecuteUbergraph_Lightbox
// (Final, UbergraphFunction)
// Parameters:
// int32 EntryPoint (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
void ULightbox_C::ExecuteUbergraph_Lightbox(int32 EntryPoint)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("Lightbox_C", "ExecuteUbergraph_Lightbox");
Params::Lightbox_C_ExecuteUbergraph_Lightbox Parms{};
Parms.EntryPoint = EntryPoint;
UObject::ProcessEvent(Func, &Parms);
}
// Function Lightbox.Lightbox_C.WidgetAnimationEvt_FadeOut_K2Node_WidgetAnimationEvent_1
// (BlueprintEvent)
void ULightbox_C::WidgetAnimationEvt_FadeOut_K2Node_WidgetAnimationEvent_1()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("Lightbox_C", "WidgetAnimationEvt_FadeOut_K2Node_WidgetAnimationEvent_1");
UObject::ProcessEvent(Func, nullptr);
}
// Function Lightbox.Lightbox_C.WidgetAnimationEvt_FadeIn_K2Node_WidgetAnimationEvent_0
// (BlueprintEvent)
void ULightbox_C::WidgetAnimationEvt_FadeIn_K2Node_WidgetAnimationEvent_0()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("Lightbox_C", "WidgetAnimationEvt_FadeIn_K2Node_WidgetAnimationEvent_0");
UObject::ProcessEvent(Func, nullptr);
}
// Function Lightbox.Lightbox_C.PreConstruct
// (BlueprintCosmetic, Event, Public, BlueprintEvent)
// Parameters:
// bool IsDesignTime (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
void ULightbox_C::PreConstruct(bool IsDesignTime)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("Lightbox_C", "PreConstruct");
Params::Lightbox_C_PreConstruct Parms{};
Parms.IsDesignTime = IsDesignTime;
UObject::ProcessEvent(Func, &Parms);
}
// Function Lightbox.Lightbox_C.Construct
// (BlueprintCosmetic, Event, Public, BlueprintEvent)
void ULightbox_C::Construct()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("Lightbox_C", "Construct");
UObject::ProcessEvent(Func, nullptr);
}
// Function Lightbox.Lightbox_C.Destruct
// (BlueprintCosmetic, Event, Public, BlueprintEvent)
void ULightbox_C::Destruct()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("Lightbox_C", "Destruct");
UObject::ProcessEvent(Func, nullptr);
}
// Function Lightbox.Lightbox_C.Intro
// (Public, BlueprintCallable, BlueprintEvent)
void ULightbox_C::Intro()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("Lightbox_C", "Intro");
UObject::ProcessEvent(Func, nullptr);
}
// Function Lightbox.Lightbox_C.Outro
// (Public, BlueprintCallable, BlueprintEvent)
void ULightbox_C::Outro()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("Lightbox_C", "Outro");
UObject::ProcessEvent(Func, nullptr);
}
// Function Lightbox.Lightbox_C.AddContent
// (Public, BlueprintCallable, BlueprintEvent)
// Parameters:
// class UCommonUserWidget* Param_Content (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
void ULightbox_C::AddContent(class UCommonUserWidget* Param_Content)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("Lightbox_C", "AddContent");
Params::Lightbox_C_AddContent Parms{};
Parms.Param_Content = Param_Content;
UObject::ProcessEvent(Func, &Parms);
}
// Function Lightbox.Lightbox_C.RemoveContent
// (Public, BlueprintCallable, BlueprintEvent)
void ULightbox_C::RemoveContent()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("Lightbox_C", "RemoveContent");
UObject::ProcessEvent(Func, nullptr);
}
}