mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-26 19:33:43 +00:00
118 lines
4.0 KiB
C++
118 lines
4.0 KiB
C++
#pragma once
|
|
|
|
/*
|
|
* SDK generated by Dumper-7
|
|
*
|
|
* https://github.com/Encryqed/Dumper-7
|
|
*/
|
|
|
|
// Package: ItemInspectEvolutionIngredientsEntry
|
|
|
|
#include "Basic.hpp"
|
|
|
|
#include "ItemInspectEvolutionIngredientsEntry_classes.hpp"
|
|
#include "ItemInspectEvolutionIngredientsEntry_parameters.hpp"
|
|
|
|
|
|
namespace SDK
|
|
{
|
|
|
|
// Function ItemInspectEvolutionIngredientsEntry.ItemInspectEvolutionIngredientsEntry_C.ExecuteUbergraph_ItemInspectEvolutionIngredientsEntry
|
|
// (Final, UbergraphFunction, HasDefaults)
|
|
// Parameters:
|
|
// int32 EntryPoint (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
|
|
void UItemInspectEvolutionIngredientsEntry_C::ExecuteUbergraph_ItemInspectEvolutionIngredientsEntry(int32 EntryPoint)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("ItemInspectEvolutionIngredientsEntry_C", "ExecuteUbergraph_ItemInspectEvolutionIngredientsEntry");
|
|
|
|
Params::ItemInspectEvolutionIngredientsEntry_C_ExecuteUbergraph_ItemInspectEvolutionIngredientsEntry Parms{};
|
|
|
|
Parms.EntryPoint = EntryPoint;
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
|
|
// Function ItemInspectEvolutionIngredientsEntry.ItemInspectEvolutionIngredientsEntry_C.Construct
|
|
// (BlueprintCosmetic, Event, Public, BlueprintEvent)
|
|
|
|
void UItemInspectEvolutionIngredientsEntry_C::Construct()
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("ItemInspectEvolutionIngredientsEntry_C", "Construct");
|
|
|
|
UObject::ProcessEvent(Func, nullptr);
|
|
}
|
|
|
|
|
|
// Function ItemInspectEvolutionIngredientsEntry.ItemInspectEvolutionIngredientsEntry_C.GetIconBrush
|
|
// (Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintEvent, BlueprintPure)
|
|
// Parameters:
|
|
// class UFortItemDefinition* ItemDefinition (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// struct FSlateBrush Brush (Parm, OutParm)
|
|
|
|
void UItemInspectEvolutionIngredientsEntry_C::GetIconBrush(class UFortItemDefinition* ItemDefinition, struct FSlateBrush* Brush)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("ItemInspectEvolutionIngredientsEntry_C", "GetIconBrush");
|
|
|
|
Params::ItemInspectEvolutionIngredientsEntry_C_GetIconBrush Parms{};
|
|
|
|
Parms.ItemDefinition = ItemDefinition;
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
|
|
if (Brush != nullptr)
|
|
*Brush = std::move(Parms.Brush);
|
|
}
|
|
|
|
|
|
// Function ItemInspectEvolutionIngredientsEntry.ItemInspectEvolutionIngredientsEntry_C.SetIngredientCount
|
|
// (Public, HasDefaults, BlueprintCallable, BlueprintEvent)
|
|
|
|
void UItemInspectEvolutionIngredientsEntry_C::SetIngredientCount()
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("ItemInspectEvolutionIngredientsEntry_C", "SetIngredientCount");
|
|
|
|
UObject::ProcessEvent(Func, nullptr);
|
|
}
|
|
|
|
|
|
// Function ItemInspectEvolutionIngredientsEntry.ItemInspectEvolutionIngredientsEntry_C.GetHaveQuantity
|
|
// (Public, HasOutParams, BlueprintCallable, BlueprintEvent, BlueprintPure)
|
|
// Parameters:
|
|
// struct FFortItemQuantityPair InPair (BlueprintVisible, BlueprintReadOnly, Parm, OutParm, ReferenceParm)
|
|
// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
|
|
int32 UItemInspectEvolutionIngredientsEntry_C::GetHaveQuantity(struct FFortItemQuantityPair& InPair)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("ItemInspectEvolutionIngredientsEntry_C", "GetHaveQuantity");
|
|
|
|
Params::ItemInspectEvolutionIngredientsEntry_C_GetHaveQuantity Parms{};
|
|
|
|
Parms.InPair = std::move(InPair);
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
|
|
InPair = std::move(Parms.InPair);
|
|
|
|
return Parms.ReturnValue;
|
|
}
|
|
|
|
}
|
|
|