mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-26 19:33:43 +00:00
81 lines
2.0 KiB
C++
81 lines
2.0 KiB
C++
#pragma once
|
|
|
|
/*
|
|
* SDK generated by Dumper-7
|
|
*
|
|
* https://github.com/Encryqed/Dumper-7
|
|
*/
|
|
|
|
// Package: ProgressWidget
|
|
|
|
#include "Basic.hpp"
|
|
|
|
#include "ProgressWidget_classes.hpp"
|
|
#include "ProgressWidget_parameters.hpp"
|
|
|
|
|
|
namespace SDK
|
|
{
|
|
|
|
// Function ProgressWidget.ProgressWidget_C.SetTitle
|
|
// (Public, BlueprintCallable, BlueprintEvent)
|
|
// Parameters:
|
|
// class FText Param_Title (BlueprintVisible, BlueprintReadOnly, Parm)
|
|
|
|
void UProgressWidget_C::SetTitle(const class FText& Param_Title)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("ProgressWidget_C", "SetTitle");
|
|
|
|
Params::ProgressWidget_C_SetTitle Parms{};
|
|
|
|
Parms.Param_Title = std::move(Param_Title);
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
|
|
// Function ProgressWidget.ProgressWidget_C.SetDescription
|
|
// (Public, BlueprintCallable, BlueprintEvent)
|
|
// Parameters:
|
|
// class FText Param_Description (BlueprintVisible, BlueprintReadOnly, Parm)
|
|
|
|
void UProgressWidget_C::SetDescription(const class FText& Param_Description)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("ProgressWidget_C", "SetDescription");
|
|
|
|
Params::ProgressWidget_C_SetDescription Parms{};
|
|
|
|
Parms.Param_Description = std::move(Param_Description);
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
|
|
// Function ProgressWidget.ProgressWidget_C.SetIcon
|
|
// (Public, BlueprintCallable, BlueprintEvent)
|
|
// Parameters:
|
|
// struct FSlateBrush IconBrush (BlueprintVisible, BlueprintReadOnly, Parm)
|
|
|
|
void UProgressWidget_C::SetIcon(const struct FSlateBrush& IconBrush)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("ProgressWidget_C", "SetIcon");
|
|
|
|
Params::ProgressWidget_C_SetIcon Parms{};
|
|
|
|
Parms.IconBrush = std::move(IconBrush);
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
}
|
|
|