mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-26 19:33:43 +00:00
55 lines
1.4 KiB
C++
55 lines
1.4 KiB
C++
#pragma once
|
|
|
|
/*
|
|
* SDK generated by Dumper-7
|
|
*
|
|
* https://github.com/Encryqed/Dumper-7
|
|
*/
|
|
|
|
// Package: MissionVoteNotification
|
|
|
|
#include "Basic.hpp"
|
|
|
|
#include "MissionVoteNotification_classes.hpp"
|
|
#include "MissionVoteNotification_parameters.hpp"
|
|
|
|
|
|
namespace SDK
|
|
{
|
|
|
|
// Function MissionVoteNotification.MissionVoteNotification_C.ExecuteUbergraph_MissionVoteNotification
|
|
// (Final, UbergraphFunction)
|
|
// Parameters:
|
|
// int32 EntryPoint (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
|
|
void UMissionVoteNotification_C::ExecuteUbergraph_MissionVoteNotification(int32 EntryPoint)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("MissionVoteNotification_C", "ExecuteUbergraph_MissionVoteNotification");
|
|
|
|
Params::MissionVoteNotification_C_ExecuteUbergraph_MissionVoteNotification Parms{};
|
|
|
|
Parms.EntryPoint = EntryPoint;
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
|
|
// Function MissionVoteNotification.MissionVoteNotification_C.OnActionTaken
|
|
// (Event, Public, BlueprintEvent)
|
|
|
|
void UMissionVoteNotification_C::OnActionTaken()
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("MissionVoteNotification_C", "OnActionTaken");
|
|
|
|
UObject::ProcessEvent(Func, nullptr);
|
|
}
|
|
|
|
}
|
|
|