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

125 lines
5.5 KiB
C++

#pragma once
/*
* SDK generated by Dumper-7
*
* https://github.com/Encryqed/Dumper-7
*/
// Package: GCN_Athena_SneakySnowman
#include "Basic.hpp"
#include "GCN_Athena_SneakySnowman_classes.hpp"
#include "GCN_Athena_SneakySnowman_parameters.hpp"
namespace SDK
{
// Function GCN_Athena_SneakySnowman.GCN_Athena_SneakySnowman_C.ExecuteUbergraph_GCN_Athena_SneakySnowman
// (Final, UbergraphFunction, HasDefaults)
// Parameters:
// int32 EntryPoint (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
void AGCN_Athena_SneakySnowman_C::ExecuteUbergraph_GCN_Athena_SneakySnowman(int32 EntryPoint)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("GCN_Athena_SneakySnowman_C", "ExecuteUbergraph_GCN_Athena_SneakySnowman");
Params::GCN_Athena_SneakySnowman_C_ExecuteUbergraph_GCN_Athena_SneakySnowman Parms{};
Parms.EntryPoint = EntryPoint;
UObject::ProcessEvent(Func, &Parms);
}
// Function GCN_Athena_SneakySnowman.GCN_Athena_SneakySnowman_C.OnLoopingStart
// (Event, Public, HasOutParams, BlueprintEvent)
// Parameters:
// class AActor* MyTarget (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
// struct FGameplayCueParameters Parameters (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, OutParm, ReferenceParm, ContainsInstancedReference)
// TArray<class UParticleSystemComponent*> ParticleComponents (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, OutParm, ZeroConstructor, ReferenceParm)
// TArray<class UAudioComponent*> AudioComponents (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, OutParm, ZeroConstructor, ReferenceParm)
void AGCN_Athena_SneakySnowman_C::OnLoopingStart(class AActor* MyTarget, const struct FGameplayCueParameters& Parameters, const TArray<class UParticleSystemComponent*>& ParticleComponents, const TArray<class UAudioComponent*>& AudioComponents)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("GCN_Athena_SneakySnowman_C", "OnLoopingStart");
Params::GCN_Athena_SneakySnowman_C_OnLoopingStart Parms{};
Parms.MyTarget = MyTarget;
Parms.Parameters = std::move(Parameters);
Parms.ParticleComponents = std::move(ParticleComponents);
Parms.AudioComponents = std::move(AudioComponents);
UObject::ProcessEvent(Func, &Parms);
}
// Function GCN_Athena_SneakySnowman.GCN_Athena_SneakySnowman_C.OnRemoval
// (Event, Public, HasOutParams, BlueprintEvent)
// Parameters:
// class AActor* MyTarget (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
// struct FGameplayCueParameters Parameters (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, OutParm, ReferenceParm, ContainsInstancedReference)
// TArray<class UParticleSystemComponent*> ParticleComponents (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, OutParm, ZeroConstructor, ReferenceParm)
// TArray<class UAudioComponent*> AudioComponents (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, OutParm, ZeroConstructor, ReferenceParm)
// class UCameraShake* BurstCameraShakeInstance (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
// class ADecalActor* BurstDecalInstance (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
void AGCN_Athena_SneakySnowman_C::OnRemoval(class AActor* MyTarget, const struct FGameplayCueParameters& Parameters, const TArray<class UParticleSystemComponent*>& ParticleComponents, const TArray<class UAudioComponent*>& AudioComponents, class UCameraShake* BurstCameraShakeInstance, class ADecalActor* BurstDecalInstance)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("GCN_Athena_SneakySnowman_C", "OnRemoval");
Params::GCN_Athena_SneakySnowman_C_OnRemoval Parms{};
Parms.MyTarget = MyTarget;
Parms.Parameters = std::move(Parameters);
Parms.ParticleComponents = std::move(ParticleComponents);
Parms.AudioComponents = std::move(AudioComponents);
Parms.BurstCameraShakeInstance = BurstCameraShakeInstance;
Parms.BurstDecalInstance = BurstDecalInstance;
UObject::ProcessEvent(Func, &Parms);
}
// Function GCN_Athena_SneakySnowman.GCN_Athena_SneakySnowman_C.On Player Step
// (BlueprintCallable, BlueprintEvent)
void AGCN_Athena_SneakySnowman_C::On_Player_Step()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("GCN_Athena_SneakySnowman_C", "On Player Step");
UObject::ProcessEvent(Func, nullptr);
}
// Function GCN_Athena_SneakySnowman.GCN_Athena_SneakySnowman_C.UserConstructionScript
// (Event, Public, BlueprintCallable, BlueprintEvent)
void AGCN_Athena_SneakySnowman_C::UserConstructionScript()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("GCN_Athena_SneakySnowman_C", "UserConstructionScript");
UObject::ProcessEvent(Func, nullptr);
}
}