mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
91 lines
2.8 KiB
C++
91 lines
2.8 KiB
C++
#pragma once
|
|
|
|
/*
|
|
* SDK generated by Dumper-7
|
|
*
|
|
* https://github.com/Encryqed/Dumper-7
|
|
*/
|
|
|
|
// Package: CurrentReportStackingEntry
|
|
|
|
#include "Basic.hpp"
|
|
|
|
#include "CurrentReportStackingEntry_classes.hpp"
|
|
#include "CurrentReportStackingEntry_parameters.hpp"
|
|
|
|
|
|
namespace SDK
|
|
{
|
|
|
|
// Function CurrentReportStackingEntry.CurrentReportStackingEntry_C.ExecuteUbergraph_CurrentReportStackingEntry
|
|
// (Final, UbergraphFunction, HasDefaults)
|
|
// Parameters:
|
|
// int32 EntryPoint (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
|
|
void UCurrentReportStackingEntry_C::ExecuteUbergraph_CurrentReportStackingEntry(int32 EntryPoint)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("CurrentReportStackingEntry_C", "ExecuteUbergraph_CurrentReportStackingEntry");
|
|
|
|
Params::CurrentReportStackingEntry_C_ExecuteUbergraph_CurrentReportStackingEntry Parms{};
|
|
|
|
Parms.EntryPoint = EntryPoint;
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
|
|
// Function CurrentReportStackingEntry.CurrentReportStackingEntry_C.InitStackingEntryFields
|
|
// (BlueprintCallable, BlueprintEvent)
|
|
// Parameters:
|
|
// EPlayerReportingStep DisplayedReportingStep (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// class FText DisplayText (BlueprintVisible, BlueprintReadOnly, Parm)
|
|
|
|
void UCurrentReportStackingEntry_C::InitStackingEntryFields(EPlayerReportingStep DisplayedReportingStep, const class FText& DisplayText)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("CurrentReportStackingEntry_C", "InitStackingEntryFields");
|
|
|
|
Params::CurrentReportStackingEntry_C_InitStackingEntryFields Parms{};
|
|
|
|
Parms.DisplayedReportingStep = DisplayedReportingStep;
|
|
Parms.DisplayText = std::move(DisplayText);
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
|
|
// Function CurrentReportStackingEntry.CurrentReportStackingEntry_C.Construct
|
|
// (BlueprintCosmetic, Event, Public, BlueprintEvent)
|
|
|
|
void UCurrentReportStackingEntry_C::Construct()
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("CurrentReportStackingEntry_C", "Construct");
|
|
|
|
UObject::ProcessEvent(Func, nullptr);
|
|
}
|
|
|
|
|
|
// Function CurrentReportStackingEntry.CurrentReportStackingEntry_C.SetDisplayTextFields
|
|
// (Public, HasDefaults, BlueprintCallable, BlueprintEvent)
|
|
|
|
void UCurrentReportStackingEntry_C::SetDisplayTextFields()
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("CurrentReportStackingEntry_C", "SetDisplayTextFields");
|
|
|
|
UObject::ProcessEvent(Func, nullptr);
|
|
}
|
|
|
|
}
|
|
|