mirror of
https://github.com/ApfelTeeSaft/Alphanium.git
synced 2026-08-27 03:33:27 +00:00
102 lines
3.1 KiB
C++
102 lines
3.1 KiB
C++
#pragma once
|
|
|
|
/*
|
|
* SDK generated by Dumper-7
|
|
*
|
|
* https://github.com/Encryqed/Dumper-7
|
|
*/
|
|
|
|
// Package: GA_CommandoFlakVest
|
|
|
|
#include "Basic.hpp"
|
|
|
|
#include "GA_CommandoFlakVest_classes.hpp"
|
|
#include "GA_CommandoFlakVest_parameters.hpp"
|
|
|
|
|
|
#pragma pack(push, 0x4)
|
|
namespace SDK
|
|
{
|
|
|
|
// Function GA_CommandoFlakVest.GA_CommandoFlakVest_C.ExecuteUbergraph_GA_CommandoFlakVest
|
|
// (HasDefaults)
|
|
// Parameters:
|
|
// int32 EntryPoint (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
|
|
|
|
void UGA_CommandoFlakVest_C::ExecuteUbergraph_GA_CommandoFlakVest(int32 EntryPoint)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("GA_CommandoFlakVest_C", "ExecuteUbergraph_GA_CommandoFlakVest");
|
|
|
|
Params::GA_CommandoFlakVest_C_ExecuteUbergraph_GA_CommandoFlakVest Parms{};
|
|
|
|
Parms.EntryPoint = EntryPoint;
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
|
|
// Function GA_CommandoFlakVest.GA_CommandoFlakVest_C.ReApplyShield
|
|
// (BlueprintCallable, BlueprintEvent)
|
|
|
|
void UGA_CommandoFlakVest_C::ReApplyShield()
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("GA_CommandoFlakVest_C", "ReApplyShield");
|
|
|
|
UObject::ProcessEvent(Func, nullptr);
|
|
}
|
|
|
|
|
|
// Function GA_CommandoFlakVest.GA_CommandoFlakVest_C.K2_ActivateAbilityFromEvent
|
|
// (Event, Protected, HasOutParams, BlueprintEvent)
|
|
// Parameters:
|
|
// const struct FGameplayEventData& EventData (ConstParm, Parm, OutParm, ReferenceParm)
|
|
|
|
void UGA_CommandoFlakVest_C::K2_ActivateAbilityFromEvent(const struct FGameplayEventData& EventData)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("GA_CommandoFlakVest_C", "K2_ActivateAbilityFromEvent");
|
|
|
|
Params::GA_CommandoFlakVest_C_K2_ActivateAbilityFromEvent Parms{};
|
|
|
|
Parms.EventData = std::move(EventData);
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
|
|
// Function GA_CommandoFlakVest.GA_CommandoFlakVest_C.K2_ShouldAbilityRespondToEvent
|
|
// (Event, Protected, HasOutParams, BlueprintCallable, BlueprintEvent, Const)
|
|
// Parameters:
|
|
// const struct FGameplayAbilityActorInfo& ActorInfo (Parm, ContainsInstancedReference)
|
|
// const struct FGameplayEventData& Payload (Parm)
|
|
// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor)
|
|
|
|
bool UGA_CommandoFlakVest_C::K2_ShouldAbilityRespondToEvent(const struct FGameplayAbilityActorInfo& ActorInfo, const struct FGameplayEventData& Payload) const
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("GA_CommandoFlakVest_C", "K2_ShouldAbilityRespondToEvent");
|
|
|
|
Params::GA_CommandoFlakVest_C_K2_ShouldAbilityRespondToEvent Parms{};
|
|
|
|
Parms.ActorInfo = std::move(ActorInfo);
|
|
Parms.Payload = std::move(Payload);
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
|
|
return Parms.ReturnValue;
|
|
}
|
|
|
|
}
|
|
|
|
#pragma pack(pop)
|