mirror of
https://github.com/ApfelTeeSaft/Alphanium.git
synced 2026-08-27 11:43:28 +00:00
63 lines
1.5 KiB
C++
63 lines
1.5 KiB
C++
#pragma once
|
|
|
|
/*
|
|
* SDK generated by Dumper-7
|
|
*
|
|
* https://github.com/Encryqed/Dumper-7
|
|
*/
|
|
|
|
// Package: JournalEntryListItem
|
|
|
|
#include "Basic.hpp"
|
|
|
|
#include "JournalEntryListItem_classes.hpp"
|
|
#include "JournalEntryListItem_parameters.hpp"
|
|
|
|
|
|
#pragma pack(push, 0x4)
|
|
namespace SDK
|
|
{
|
|
|
|
// Function JournalEntryListItem.JournalEntryListItem_C.ExecuteUbergraph_JournalEntryListItem
|
|
// ()
|
|
// Parameters:
|
|
// int32 EntryPoint (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
|
|
|
|
void UJournalEntryListItem_C::ExecuteUbergraph_JournalEntryListItem(int32 EntryPoint)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("JournalEntryListItem_C", "ExecuteUbergraph_JournalEntryListItem");
|
|
|
|
Params::JournalEntryListItem_C_ExecuteUbergraph_JournalEntryListItem Parms{};
|
|
|
|
Parms.EntryPoint = EntryPoint;
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
|
|
// Function JournalEntryListItem.JournalEntryListItem_C.SetSelected
|
|
// (Event, Public, BlueprintEvent)
|
|
// Parameters:
|
|
// bool bSelected (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
|
|
|
|
void UJournalEntryListItem_C::SetSelected(bool bSelected)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("JournalEntryListItem_C", "SetSelected");
|
|
|
|
Params::JournalEntryListItem_C_SetSelected Parms{};
|
|
|
|
Parms.bSelected = bSelected;
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
}
|
|
|
|
#pragma pack(pop)
|