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

112 lines
3.2 KiB
C++

#pragma once
/*
* SDK generated by Dumper-7
*
* https://github.com/Encryqed/Dumper-7
*/
// Package: AthenaReplayBrowserRow
#include "Basic.hpp"
#include "AthenaReplayBrowserRow_classes.hpp"
#include "AthenaReplayBrowserRow_parameters.hpp"
namespace SDK
{
// Function AthenaReplayBrowserRow.AthenaReplayBrowserRow_C.ExecuteUbergraph_AthenaReplayBrowserRow
// (Final, UbergraphFunction)
// Parameters:
// int32 EntryPoint (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
void UAthenaReplayBrowserRow_C::ExecuteUbergraph_AthenaReplayBrowserRow(int32 EntryPoint)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("AthenaReplayBrowserRow_C", "ExecuteUbergraph_AthenaReplayBrowserRow");
Params::AthenaReplayBrowserRow_C_ExecuteUbergraph_AthenaReplayBrowserRow Parms{};
Parms.EntryPoint = EntryPoint;
UObject::ProcessEvent(Func, &Parms);
}
// Function AthenaReplayBrowserRow.AthenaReplayBrowserRow_C.PreConstruct
// (BlueprintCosmetic, Event, Public, BlueprintEvent)
// Parameters:
// bool IsDesignTime (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
void UAthenaReplayBrowserRow_C::PreConstruct(bool IsDesignTime)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("AthenaReplayBrowserRow_C", "PreConstruct");
Params::AthenaReplayBrowserRow_C_PreConstruct Parms{};
Parms.IsDesignTime = IsDesignTime;
UObject::ProcessEvent(Func, &Parms);
}
// Function AthenaReplayBrowserRow.AthenaReplayBrowserRow_C.OnReplayBrowserEntryDataSet
// (Event, Public, BlueprintEvent)
void UAthenaReplayBrowserRow_C::OnReplayBrowserEntryDataSet()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("AthenaReplayBrowserRow_C", "OnReplayBrowserEntryDataSet");
UObject::ProcessEvent(Func, nullptr);
}
// Function AthenaReplayBrowserRow.AthenaReplayBrowserRow_C.Refresh
// (Private, HasDefaults, BlueprintCallable, BlueprintEvent)
void UAthenaReplayBrowserRow_C::Refresh()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("AthenaReplayBrowserRow_C", "Refresh");
UObject::ProcessEvent(Func, nullptr);
}
// Function AthenaReplayBrowserRow.AthenaReplayBrowserRow_C.FormatLengthText
// (Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintEvent)
// Parameters:
// float Seconds (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
// class FText ReturnValue (Parm, OutParm, ReturnParm)
class FText UAthenaReplayBrowserRow_C::FormatLengthText(float Seconds)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("AthenaReplayBrowserRow_C", "FormatLengthText");
Params::AthenaReplayBrowserRow_C_FormatLengthText Parms{};
Parms.Seconds = Seconds;
UObject::ProcessEvent(Func, &Parms);
return Parms.ReturnValue;
}
}