mirror of
https://github.com/ApfelTeeSaft/Alphanium.git
synced 2026-08-27 03:33:27 +00:00
113 lines
2.9 KiB
C++
113 lines
2.9 KiB
C++
#pragma once
|
|
|
|
/*
|
|
* SDK generated by Dumper-7
|
|
*
|
|
* https://github.com/Encryqed/Dumper-7
|
|
*/
|
|
|
|
// Package: JournalWidget
|
|
|
|
#include "Basic.hpp"
|
|
|
|
#include "JournalWidget_classes.hpp"
|
|
#include "JournalWidget_parameters.hpp"
|
|
|
|
|
|
#pragma pack(push, 0x4)
|
|
namespace SDK
|
|
{
|
|
|
|
// Function JournalWidget.JournalWidget_C.ExecuteUbergraph_JournalWidget
|
|
// ()
|
|
// Parameters:
|
|
// int32 EntryPoint (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
|
|
|
|
void UJournalWidget_C::ExecuteUbergraph_JournalWidget(int32 EntryPoint)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("JournalWidget_C", "ExecuteUbergraph_JournalWidget");
|
|
|
|
Params::JournalWidget_C_ExecuteUbergraph_JournalWidget Parms{};
|
|
|
|
Parms.EntryPoint = EntryPoint;
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
|
|
// Function JournalWidget.JournalWidget_C.HandleQuestsUpdates
|
|
// (BlueprintCallable, BlueprintEvent)
|
|
|
|
void UJournalWidget_C::HandleQuestsUpdates()
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("JournalWidget_C", "HandleQuestsUpdates");
|
|
|
|
UObject::ProcessEvent(Func, nullptr);
|
|
}
|
|
|
|
|
|
// Function JournalWidget.JournalWidget_C.Construct
|
|
// (BlueprintCosmetic, Event, Public, BlueprintEvent)
|
|
|
|
void UJournalWidget_C::Construct()
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("JournalWidget_C", "Construct");
|
|
|
|
UObject::ProcessEvent(Func, nullptr);
|
|
}
|
|
|
|
|
|
// Function JournalWidget.JournalWidget_C.Update
|
|
// (Public, BlueprintCallable, BlueprintEvent)
|
|
// Parameters:
|
|
// class UFortQuestManager* QuestManager (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
|
|
|
|
void UJournalWidget_C::Update(class UFortQuestManager* QuestManager)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("JournalWidget_C", "Update");
|
|
|
|
Params::JournalWidget_C_Update Parms{};
|
|
|
|
Parms.QuestManager = QuestManager;
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
|
|
// Function JournalWidget.JournalWidget_C.QuestSelected
|
|
// (Public, BlueprintCallable, BlueprintEvent)
|
|
// Parameters:
|
|
// class UJournalCategoryWidget_C* CategoryWidget (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
|
|
// class UFortQuestItem* SelectedQuest_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
|
|
|
|
void UJournalWidget_C::QuestSelected(class UJournalCategoryWidget_C* CategoryWidget, class UFortQuestItem* SelectedQuest_0)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("JournalWidget_C", "QuestSelected");
|
|
|
|
Params::JournalWidget_C_QuestSelected Parms{};
|
|
|
|
Parms.CategoryWidget = CategoryWidget;
|
|
Parms.SelectedQuest_0 = SelectedQuest_0;
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
}
|
|
|
|
#pragma pack(pop)
|