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

191 lines
6.1 KiB
C++

#pragma once
/*
* SDK generated by Dumper-7
*
* https://github.com/Encryqed/Dumper-7
*/
// Package: AthenaRotator
#include "Basic.hpp"
#include "AthenaRotator_classes.hpp"
#include "AthenaRotator_parameters.hpp"
namespace SDK
{
// Function AthenaRotator.AthenaRotator_C.ExecuteUbergraph_AthenaRotator
// (Final, UbergraphFunction, HasDefaults)
// Parameters:
// int32 EntryPoint (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
void UAthenaRotator_C::ExecuteUbergraph_AthenaRotator(int32 EntryPoint)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("AthenaRotator_C", "ExecuteUbergraph_AthenaRotator");
Params::AthenaRotator_C_ExecuteUbergraph_AthenaRotator Parms{};
Parms.EntryPoint = EntryPoint;
UObject::ProcessEvent(Func, &Parms);
}
// Function AthenaRotator.AthenaRotator_C.BP_OnClicked
// (Event, Protected, BlueprintEvent)
void UAthenaRotator_C::BP_OnClicked()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("AthenaRotator_C", "BP_OnClicked");
UObject::ProcessEvent(Func, nullptr);
}
// Function AthenaRotator.AthenaRotator_C.PreConstruct
// (BlueprintCosmetic, Event, Public, BlueprintEvent)
// Parameters:
// bool IsDesignTime (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
void UAthenaRotator_C::PreConstruct(bool IsDesignTime)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("AthenaRotator_C", "PreConstruct");
Params::AthenaRotator_C_PreConstruct Parms{};
Parms.IsDesignTime = IsDesignTime;
UObject::ProcessEvent(Func, &Parms);
}
// Function AthenaRotator.AthenaRotator_C.Tick
// (BlueprintCosmetic, Event, Public, BlueprintEvent)
// Parameters:
// struct FGeometry MyGeometry (BlueprintVisible, BlueprintReadOnly, Parm, IsPlainOldData, NoDestructor)
// float InDeltaTime (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
void UAthenaRotator_C::Tick(const struct FGeometry& MyGeometry, float InDeltaTime)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("AthenaRotator_C", "Tick");
Params::AthenaRotator_C_Tick Parms{};
Parms.MyGeometry = std::move(MyGeometry);
Parms.InDeltaTime = InDeltaTime;
UObject::ProcessEvent(Func, &Parms);
}
// Function AthenaRotator.AthenaRotator_C.BndEvt__ButtonRight_K2Node_ComponentBoundEvent_15_CommonButtonClicked__DelegateSignature
// (BlueprintEvent)
// Parameters:
// class UCommonButton* Button (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
void UAthenaRotator_C::BndEvt__ButtonRight_K2Node_ComponentBoundEvent_15_CommonButtonClicked__DelegateSignature(class UCommonButton* Button)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("AthenaRotator_C", "BndEvt__ButtonRight_K2Node_ComponentBoundEvent_15_CommonButtonClicked__DelegateSignature");
Params::AthenaRotator_C_BndEvt__ButtonRight_K2Node_ComponentBoundEvent_15_CommonButtonClicked__DelegateSignature Parms{};
Parms.Button = Button;
UObject::ProcessEvent(Func, &Parms);
}
// Function AthenaRotator.AthenaRotator_C.BndEvt__ButtonLeft_K2Node_ComponentBoundEvent_1_CommonButtonClicked__DelegateSignature
// (BlueprintEvent)
// Parameters:
// class UCommonButton* Button (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
void UAthenaRotator_C::BndEvt__ButtonLeft_K2Node_ComponentBoundEvent_1_CommonButtonClicked__DelegateSignature(class UCommonButton* Button)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("AthenaRotator_C", "BndEvt__ButtonLeft_K2Node_ComponentBoundEvent_1_CommonButtonClicked__DelegateSignature");
Params::AthenaRotator_C_BndEvt__ButtonLeft_K2Node_ComponentBoundEvent_1_CommonButtonClicked__DelegateSignature Parms{};
Parms.Button = Button;
UObject::ProcessEvent(Func, &Parms);
}
// Function AthenaRotator.AthenaRotator_C.Construct
// (BlueprintCosmetic, Event, Public, BlueprintEvent)
void UAthenaRotator_C::Construct()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("AthenaRotator_C", "Construct");
UObject::ProcessEvent(Func, nullptr);
}
// Function AthenaRotator.AthenaRotator_C.ChangeDirection
// (Public, BlueprintCallable, BlueprintEvent)
// Parameters:
// bool bDirection (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
void UAthenaRotator_C::ChangeDirection(bool bDirection)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("AthenaRotator_C", "ChangeDirection");
Params::AthenaRotator_C_ChangeDirection Parms{};
Parms.bDirection = bDirection;
UObject::ProcessEvent(Func, &Parms);
}
// Function AthenaRotator.AthenaRotator_C.ConfigureForOneDirectionMode
// (Public, HasDefaults, BlueprintCallable, BlueprintEvent)
// Parameters:
// bool UseOneDirectionalMode (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
void UAthenaRotator_C::ConfigureForOneDirectionMode(bool UseOneDirectionalMode)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("AthenaRotator_C", "ConfigureForOneDirectionMode");
Params::AthenaRotator_C_ConfigureForOneDirectionMode Parms{};
Parms.UseOneDirectionalMode = UseOneDirectionalMode;
UObject::ProcessEvent(Func, &Parms);
}
}