mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 12:13:25 +00:00
61 lines
1.6 KiB
C++
61 lines
1.6 KiB
C++
#pragma once
|
|
|
|
/*
|
|
* SDK generated by Dumper-7
|
|
*
|
|
* https://github.com/Encryqed/Dumper-7
|
|
*/
|
|
|
|
// Package: CMSImageSlideShow
|
|
|
|
#include "Basic.hpp"
|
|
|
|
#include "CMSImageSlideShow_classes.hpp"
|
|
#include "CMSImageSlideShow_parameters.hpp"
|
|
|
|
|
|
namespace SDK
|
|
{
|
|
|
|
// Function CMSImageSlideShow.CMSImageSlideShow_C.ExecuteUbergraph_CMSImageSlideShow
|
|
// (Final, UbergraphFunction)
|
|
// Parameters:
|
|
// int32 EntryPoint (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
|
|
void UCMSImageSlideShow_C::ExecuteUbergraph_CMSImageSlideShow(int32 EntryPoint)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("CMSImageSlideShow_C", "ExecuteUbergraph_CMSImageSlideShow");
|
|
|
|
Params::CMSImageSlideShow_C_ExecuteUbergraph_CMSImageSlideShow Parms{};
|
|
|
|
Parms.EntryPoint = EntryPoint;
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
|
|
// Function CMSImageSlideShow.CMSImageSlideShow_C.SetMediaURLs
|
|
// (HasOutParams, BlueprintCallable, BlueprintEvent)
|
|
// Parameters:
|
|
// TArray<class FString> MediaURLs (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, OutParm, ZeroConstructor, ReferenceParm)
|
|
|
|
void UCMSImageSlideShow_C::SetMediaURLs(const TArray<class FString>& MediaURLs)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("CMSImageSlideShow_C", "SetMediaURLs");
|
|
|
|
Params::CMSImageSlideShow_C_SetMediaURLs Parms{};
|
|
|
|
Parms.MediaURLs = std::move(MediaURLs);
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
}
|
|
|