mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-26 19:33:43 +00:00
49 lines
1.5 KiB
C++
49 lines
1.5 KiB
C++
#pragma once
|
|
|
|
/*
|
|
* SDK generated by Dumper-7
|
|
*
|
|
* https://github.com/Encryqed/Dumper-7
|
|
*/
|
|
|
|
// Package: ToyOptionsComponent
|
|
|
|
#include "Basic.hpp"
|
|
|
|
#include "ToyOptionsComponent_classes.hpp"
|
|
#include "ToyOptionsComponent_parameters.hpp"
|
|
|
|
|
|
namespace SDK
|
|
{
|
|
|
|
// Function ToyOptionsComponent.ToyOptionsComponent_C.OnLocalInteract
|
|
// (Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintEvent)
|
|
// Parameters:
|
|
// class AFortPlayerPawn* InteractingPawn (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// bool bResult (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor)
|
|
// class UFortMatchmakingKnobsModal* ModalWidget (Parm, OutParm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
|
|
void UToyOptionsComponent_C::OnLocalInteract(class AFortPlayerPawn* InteractingPawn, bool* bResult, class UFortMatchmakingKnobsModal** ModalWidget)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("ToyOptionsComponent_C", "OnLocalInteract");
|
|
|
|
Params::ToyOptionsComponent_C_OnLocalInteract Parms{};
|
|
|
|
Parms.InteractingPawn = InteractingPawn;
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
|
|
if (bResult != nullptr)
|
|
*bResult = Parms.bResult;
|
|
|
|
if (ModalWidget != nullptr)
|
|
*ModalWidget = Parms.ModalWidget;
|
|
}
|
|
|
|
}
|
|
|