mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
41 lines
914 B
C++
41 lines
914 B
C++
#pragma once
|
|
|
|
/*
|
|
* SDK generated by Dumper-7
|
|
*
|
|
* https://github.com/Encryqed/Dumper-7
|
|
*/
|
|
|
|
// Package: ConsoleProfileWidget
|
|
|
|
#include "Basic.hpp"
|
|
|
|
#include "ConsoleProfileWidget_classes.hpp"
|
|
#include "ConsoleProfileWidget_parameters.hpp"
|
|
|
|
|
|
namespace SDK
|
|
{
|
|
|
|
// Function ConsoleProfileWidget.ConsoleProfileWidget_C.SetDisplayName
|
|
// (Public, BlueprintCallable, BlueprintEvent)
|
|
// Parameters:
|
|
// class FText Param_DisplayName (BlueprintVisible, BlueprintReadOnly, Parm)
|
|
|
|
void UConsoleProfileWidget_C::SetDisplayName(const class FText& Param_DisplayName)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("ConsoleProfileWidget_C", "SetDisplayName");
|
|
|
|
Params::ConsoleProfileWidget_C_SetDisplayName Parms{};
|
|
|
|
Parms.Param_DisplayName = std::move(Param_DisplayName);
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
}
|
|
|