mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-26 19:33:43 +00:00
83 lines
2.0 KiB
C++
83 lines
2.0 KiB
C++
#pragma once
|
|
|
|
/*
|
|
* SDK generated by Dumper-7
|
|
*
|
|
* https://github.com/Encryqed/Dumper-7
|
|
*/
|
|
|
|
// Package: FriendNotification
|
|
|
|
#include "Basic.hpp"
|
|
|
|
#include "FriendNotification_classes.hpp"
|
|
#include "FriendNotification_parameters.hpp"
|
|
|
|
|
|
namespace SDK
|
|
{
|
|
|
|
// Function FriendNotification.FriendNotification_C.ExecuteUbergraph_FriendNotification
|
|
// (Final, UbergraphFunction)
|
|
// Parameters:
|
|
// int32 EntryPoint (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
|
|
void UFriendNotification_C::ExecuteUbergraph_FriendNotification(int32 EntryPoint)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("FriendNotification_C", "ExecuteUbergraph_FriendNotification");
|
|
|
|
Params::FriendNotification_C_ExecuteUbergraph_FriendNotification Parms{};
|
|
|
|
Parms.EntryPoint = EntryPoint;
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
|
|
// Function FriendNotification.FriendNotification_C.ShowPartyInvites
|
|
// (Public, BlueprintCallable, BlueprintEvent)
|
|
|
|
void UFriendNotification_C::ShowPartyInvites()
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("FriendNotification_C", "ShowPartyInvites");
|
|
|
|
UObject::ProcessEvent(Func, nullptr);
|
|
}
|
|
|
|
|
|
// Function FriendNotification.FriendNotification_C.JoinPartyInvite
|
|
// (Public, BlueprintCallable, BlueprintEvent)
|
|
|
|
void UFriendNotification_C::JoinPartyInvite()
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("FriendNotification_C", "JoinPartyInvite");
|
|
|
|
UObject::ProcessEvent(Func, nullptr);
|
|
}
|
|
|
|
|
|
// Function FriendNotification.FriendNotification_C.ShowFriendInvites
|
|
// (Public, BlueprintCallable, BlueprintEvent)
|
|
|
|
void UFriendNotification_C::ShowFriendInvites()
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("FriendNotification_C", "ShowFriendInvites");
|
|
|
|
UObject::ProcessEvent(Func, nullptr);
|
|
}
|
|
|
|
}
|
|
|