Files
Alphanium/CppSDK/SDK/AnimNotifyState_DisableSteering_functions.cpp

75 lines
2.8 KiB
C++

#pragma once
/*
* SDK generated by Dumper-7
*
* https://github.com/Encryqed/Dumper-7
*/
// Package: AnimNotifyState_DisableSteering
#include "Basic.hpp"
#include "AnimNotifyState_DisableSteering_classes.hpp"
#include "AnimNotifyState_DisableSteering_parameters.hpp"
#pragma pack(push, 0x4)
namespace SDK
{
// Function AnimNotifyState_DisableSteering.AnimNotifyState_DisableSteering_C.Received_NotifyBegin
// (Event, Public, HasOutParams, BlueprintCallable, BlueprintEvent)
// Parameters:
// class USkeletalMeshComponent* MeshComp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
// class UAnimSequenceBase* Animation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
// float TotalDuration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor)
bool UAnimNotifyState_DisableSteering_C::Received_NotifyBegin(class USkeletalMeshComponent* MeshComp, class UAnimSequenceBase* Animation, float TotalDuration)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("AnimNotifyState_DisableSteering_C", "Received_NotifyBegin");
Params::AnimNotifyState_DisableSteering_C_Received_NotifyBegin Parms{};
Parms.MeshComp = MeshComp;
Parms.Animation = Animation;
Parms.TotalDuration = TotalDuration;
UObject::ProcessEvent(Func, &Parms);
return Parms.ReturnValue;
}
// Function AnimNotifyState_DisableSteering.AnimNotifyState_DisableSteering_C.Received_NotifyEnd
// (Event, Public, HasOutParams, BlueprintCallable, BlueprintEvent)
// Parameters:
// class USkeletalMeshComponent* MeshComp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
// class UAnimSequenceBase* Animation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor)
bool UAnimNotifyState_DisableSteering_C::Received_NotifyEnd(class USkeletalMeshComponent* MeshComp, class UAnimSequenceBase* Animation)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("AnimNotifyState_DisableSteering_C", "Received_NotifyEnd");
Params::AnimNotifyState_DisableSteering_C_Received_NotifyEnd Parms{};
Parms.MeshComp = MeshComp;
Parms.Animation = Animation;
UObject::ProcessEvent(Func, &Parms);
return Parms.ReturnValue;
}
}
#pragma pack(pop)