PalWorld-NetCrack/SDK/BP_ActionEat_functions.cpp
2024-01-22 14:43:11 +08:00

114 lines
4.0 KiB
C++

#pragma once
// Dumped with Dumper-7!
#include "../SDK.hpp"
namespace SDK
{
//---------------------------------------------------------------------------------------------------------------------
// FUNCTIONS
//---------------------------------------------------------------------------------------------------------------------
// BlueprintGeneratedClass BP_ActionEat.BP_ActionEat_C
// (None)
class UClass* UBP_ActionEat_C::StaticClass()
{
static class UClass* Clss = nullptr;
if (!Clss)
Clss = UObject::FindClassFast("BP_ActionEat_C");
return Clss;
}
// BP_ActionEat_C BP_ActionEat.Default__BP_ActionEat_C
// (Public, ClassDefaultObject, ArchetypeObject, WasLoaded, LoadCompleted)
class UBP_ActionEat_C* UBP_ActionEat_C::GetDefaultObj()
{
static class UBP_ActionEat_C* Default = nullptr;
if (!Default)
Default = static_cast<UBP_ActionEat_C*>(UBP_ActionEat_C::StaticClass()->DefaultObject);
return Default;
}
// Function BP_ActionEat.BP_ActionEat_C.OnBeginAction
// (Event, Public, BlueprintEvent)
// Parameters:
void UBP_ActionEat_C::OnBeginAction()
{
static class UFunction* Func = nullptr;
if (!Func)
Func = Class->GetFunction("BP_ActionEat_C", "OnBeginAction");
UObject::ProcessEvent(Func, nullptr);
}
// Function BP_ActionEat.BP_ActionEat_C.OnEndAction
// (Event, Public, BlueprintEvent)
// Parameters:
void UBP_ActionEat_C::OnEndAction()
{
static class UFunction* Func = nullptr;
if (!Func)
Func = Class->GetFunction("BP_ActionEat_C", "OnEndAction");
UObject::ProcessEvent(Func, nullptr);
}
// Function BP_ActionEat.BP_ActionEat_C.ExecuteUbergraph_BP_ActionEat
// (Final, UbergraphFunction)
// Parameters:
// int32 EntryPoint (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
// class APalCharacter* CallFunc_GetActionCharacter_ReturnValue (ZeroConstructor, NoDestructor, HasGetValueTypeHash)
// class UPalFlyMeshHeightCtrlComponent*CallFunc_GetComponentByClass_ReturnValue (ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash)
// bool CallFunc_IsValid_ReturnValue (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
// class APalCharacter* CallFunc_GetActionCharacter_ReturnValue_1 (ZeroConstructor, NoDestructor, HasGetValueTypeHash)
// class UPalFlyMeshHeightCtrlComponent*CallFunc_GetComponentByClass_ReturnValue_1 (ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash)
// bool CallFunc_IsValid_ReturnValue_1 (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
void UBP_ActionEat_C::ExecuteUbergraph_BP_ActionEat(int32 EntryPoint, class APalCharacter* CallFunc_GetActionCharacter_ReturnValue, class UPalFlyMeshHeightCtrlComponent* CallFunc_GetComponentByClass_ReturnValue, bool CallFunc_IsValid_ReturnValue, class APalCharacter* CallFunc_GetActionCharacter_ReturnValue_1, class UPalFlyMeshHeightCtrlComponent* CallFunc_GetComponentByClass_ReturnValue_1, bool CallFunc_IsValid_ReturnValue_1)
{
static class UFunction* Func = nullptr;
if (!Func)
Func = Class->GetFunction("BP_ActionEat_C", "ExecuteUbergraph_BP_ActionEat");
Params::UBP_ActionEat_C_ExecuteUbergraph_BP_ActionEat_Params Parms{};
Parms.EntryPoint = EntryPoint;
Parms.CallFunc_GetActionCharacter_ReturnValue = CallFunc_GetActionCharacter_ReturnValue;
Parms.CallFunc_GetComponentByClass_ReturnValue = CallFunc_GetComponentByClass_ReturnValue;
Parms.CallFunc_IsValid_ReturnValue = CallFunc_IsValid_ReturnValue;
Parms.CallFunc_GetActionCharacter_ReturnValue_1 = CallFunc_GetActionCharacter_ReturnValue_1;
Parms.CallFunc_GetComponentByClass_ReturnValue_1 = CallFunc_GetComponentByClass_ReturnValue_1;
Parms.CallFunc_IsValid_ReturnValue_1 = CallFunc_IsValid_ReturnValue_1;
UObject::ProcessEvent(Func, &Parms);
}
}