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

93 lines
3.6 KiB
C++

#pragma once
// Dumped with Dumper-7!
#include "../SDK.hpp"
namespace SDK
{
//---------------------------------------------------------------------------------------------------------------------
// FUNCTIONS
//---------------------------------------------------------------------------------------------------------------------
// BlueprintGeneratedClass BP_AINPC_Combat_CommonState_Rest.BP_AINPC_Combat_CommonState_Rest_C
// (None)
class UClass* UBP_AINPC_Combat_CommonState_Rest_C::StaticClass()
{
static class UClass* Clss = nullptr;
if (!Clss)
Clss = UObject::FindClassFast("BP_AINPC_Combat_CommonState_Rest_C");
return Clss;
}
// BP_AINPC_Combat_CommonState_Rest_C BP_AINPC_Combat_CommonState_Rest.Default__BP_AINPC_Combat_CommonState_Rest_C
// (Public, ClassDefaultObject, ArchetypeObject, WasLoaded, LoadCompleted)
class UBP_AINPC_Combat_CommonState_Rest_C* UBP_AINPC_Combat_CommonState_Rest_C::GetDefaultObj()
{
static class UBP_AINPC_Combat_CommonState_Rest_C* Default = nullptr;
if (!Default)
Default = static_cast<UBP_AINPC_Combat_CommonState_Rest_C*>(UBP_AINPC_Combat_CommonState_Rest_C::StaticClass()->DefaultObject);
return Default;
}
// Function BP_AINPC_Combat_CommonState_Rest.BP_AINPC_Combat_CommonState_Rest_C.StateTick
// (Event, Public, BlueprintEvent)
// Parameters:
// float DeltaTime (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
void UBP_AINPC_Combat_CommonState_Rest_C::StateTick(float DeltaTime)
{
static class UFunction* Func = nullptr;
if (!Func)
Func = Class->GetFunction("BP_AINPC_Combat_CommonState_Rest_C", "StateTick");
Params::UBP_AINPC_Combat_CommonState_Rest_C_StateTick_Params Parms{};
Parms.DeltaTime = DeltaTime;
UObject::ProcessEvent(Func, &Parms);
}
// Function BP_AINPC_Combat_CommonState_Rest.BP_AINPC_Combat_CommonState_Rest_C.ExecuteUbergraph_BP_AINPC_Combat_CommonState_Rest
// (Final, UbergraphFunction)
// Parameters:
// int32 EntryPoint (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
// class UBP_AIAction_NPC_CombatBase_C*CallFunc_GetCombatAIActionRef_BPAIActionNPCCombat (ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash)
// class AController* CallFunc_GetController_ReturnValue (ZeroConstructor, NoDestructor, HasGetValueTypeHash)
// float K2Node_Event_DeltaTime (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
void UBP_AINPC_Combat_CommonState_Rest_C::ExecuteUbergraph_BP_AINPC_Combat_CommonState_Rest(int32 EntryPoint, class UBP_AIAction_NPC_CombatBase_C* CallFunc_GetCombatAIActionRef_BPAIActionNPCCombat, class AController* CallFunc_GetController_ReturnValue, float K2Node_Event_DeltaTime)
{
static class UFunction* Func = nullptr;
if (!Func)
Func = Class->GetFunction("BP_AINPC_Combat_CommonState_Rest_C", "ExecuteUbergraph_BP_AINPC_Combat_CommonState_Rest");
Params::UBP_AINPC_Combat_CommonState_Rest_C_ExecuteUbergraph_BP_AINPC_Combat_CommonState_Rest_Params Parms{};
Parms.EntryPoint = EntryPoint;
Parms.CallFunc_GetCombatAIActionRef_BPAIActionNPCCombat = CallFunc_GetCombatAIActionRef_BPAIActionNPCCombat;
Parms.CallFunc_GetController_ReturnValue = CallFunc_GetController_ReturnValue;
Parms.K2Node_Event_DeltaTime = K2Node_Event_DeltaTime;
UObject::ProcessEvent(Func, &Parms);
}
}