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

82 lines
3.7 KiB
C++

#pragma once
// Dumped with Dumper-7!
#include "../SDK.hpp"
namespace SDK
{
//---------------------------------------------------------------------------------------------------------------------
// FUNCTIONS
//---------------------------------------------------------------------------------------------------------------------
// WidgetBlueprintGeneratedClass WBP_ShopSellPrice.WBP_ShopSellPrice_C
// (None)
class UClass* UWBP_ShopSellPrice_C::StaticClass()
{
static class UClass* Clss = nullptr;
if (!Clss)
Clss = UObject::FindClassFast("WBP_ShopSellPrice_C");
return Clss;
}
// WBP_ShopSellPrice_C WBP_ShopSellPrice.Default__WBP_ShopSellPrice_C
// (Public, ClassDefaultObject, ArchetypeObject, WasLoaded, LoadCompleted)
class UWBP_ShopSellPrice_C* UWBP_ShopSellPrice_C::GetDefaultObj()
{
static class UWBP_ShopSellPrice_C* Default = nullptr;
if (!Default)
Default = static_cast<UWBP_ShopSellPrice_C*>(UWBP_ShopSellPrice_C::StaticClass()->DefaultObject);
return Default;
}
// Function WBP_ShopSellPrice.WBP_ShopSellPrice_C.SetPrice
// (Public, HasDefaults, BlueprintCallable, BlueprintEvent)
// Parameters:
// int32 Price (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
// int32 AdditionalPrice (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
// bool CallFunc_GreaterEqual_IntInt_ReturnValue (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
// class FText CallFunc_Conv_IntToText_ReturnValue (None)
// struct FFormatArgumentData K2Node_MakeStruct_FormatArgumentData (HasGetValueTypeHash)
// class FText CallFunc_Conv_IntToText_ReturnValue_1 (None)
// struct FFormatArgumentData K2Node_MakeStruct_FormatArgumentData_1 (HasGetValueTypeHash)
// TArray<struct FFormatArgumentData> K2Node_MakeArray_Array (ReferenceParm)
// class FText CallFunc_Format_ReturnValue (None)
void UWBP_ShopSellPrice_C::SetPrice(int32 Price, int32 AdditionalPrice, bool CallFunc_GreaterEqual_IntInt_ReturnValue, class FText CallFunc_Conv_IntToText_ReturnValue, const struct FFormatArgumentData& K2Node_MakeStruct_FormatArgumentData, class FText CallFunc_Conv_IntToText_ReturnValue_1, const struct FFormatArgumentData& K2Node_MakeStruct_FormatArgumentData_1, TArray<struct FFormatArgumentData>& K2Node_MakeArray_Array, class FText CallFunc_Format_ReturnValue)
{
static class UFunction* Func = nullptr;
if (!Func)
Func = Class->GetFunction("WBP_ShopSellPrice_C", "SetPrice");
Params::UWBP_ShopSellPrice_C_SetPrice_Params Parms{};
Parms.Price = Price;
Parms.AdditionalPrice = AdditionalPrice;
Parms.CallFunc_GreaterEqual_IntInt_ReturnValue = CallFunc_GreaterEqual_IntInt_ReturnValue;
Parms.CallFunc_Conv_IntToText_ReturnValue = CallFunc_Conv_IntToText_ReturnValue;
Parms.K2Node_MakeStruct_FormatArgumentData = K2Node_MakeStruct_FormatArgumentData;
Parms.CallFunc_Conv_IntToText_ReturnValue_1 = CallFunc_Conv_IntToText_ReturnValue_1;
Parms.K2Node_MakeStruct_FormatArgumentData_1 = K2Node_MakeStruct_FormatArgumentData_1;
Parms.K2Node_MakeArray_Array = K2Node_MakeArray_Array;
Parms.CallFunc_Format_ReturnValue = CallFunc_Format_ReturnValue;
UObject::ProcessEvent(Func, &Parms);
}
}