mirror of
https://github.com/swordbluesword/PalWorld-NetCrack.git
synced 2025-04-29 02:47:17 +09:00
175 lines
10 KiB
C++
175 lines
10 KiB
C++
#pragma once
|
|
|
|
// Dumped with Dumper-7!
|
|
|
|
|
|
#include "../SDK.hpp"
|
|
|
|
namespace SDK
|
|
{
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
// FUNCTIONS
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
// WidgetBlueprintGeneratedClass WBP_Option_NoteContent.WBP_Option_NoteContent_C
|
|
// (None)
|
|
|
|
class UClass* UWBP_Option_NoteContent_C::StaticClass()
|
|
{
|
|
static class UClass* Clss = nullptr;
|
|
|
|
if (!Clss)
|
|
Clss = UObject::FindClassFast("WBP_Option_NoteContent_C");
|
|
|
|
return Clss;
|
|
}
|
|
|
|
|
|
// WBP_Option_NoteContent_C WBP_Option_NoteContent.Default__WBP_Option_NoteContent_C
|
|
// (Public, ClassDefaultObject, ArchetypeObject, WasLoaded, LoadCompleted)
|
|
|
|
class UWBP_Option_NoteContent_C* UWBP_Option_NoteContent_C::GetDefaultObj()
|
|
{
|
|
static class UWBP_Option_NoteContent_C* Default = nullptr;
|
|
|
|
if (!Default)
|
|
Default = static_cast<UWBP_Option_NoteContent_C*>(UWBP_Option_NoteContent_C::StaticClass()->DefaultObject);
|
|
|
|
return Default;
|
|
}
|
|
|
|
|
|
// Function WBP_Option_NoteContent.WBP_Option_NoteContent_C.ChangeOffset
|
|
// (Public, BlueprintCallable, BlueprintEvent)
|
|
// Parameters:
|
|
// double NewOffset (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
|
|
void UWBP_Option_NoteContent_C::ChangeOffset(double NewOffset)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (!Func)
|
|
Func = Class->GetFunction("WBP_Option_NoteContent_C", "ChangeOffset");
|
|
|
|
Params::UWBP_Option_NoteContent_C_ChangeOffset_Params Parms{};
|
|
|
|
Parms.NewOffset = NewOffset;
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
|
|
}
|
|
|
|
|
|
// Function WBP_Option_NoteContent.WBP_Option_NoteContent_C.SetNoteContent
|
|
// (BlueprintCallable, BlueprintEvent)
|
|
// Parameters:
|
|
// class UPalNoteData* NoteData (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash)
|
|
// class FText Desc (BlueprintVisible, BlueprintReadOnly, Parm)
|
|
|
|
void UWBP_Option_NoteContent_C::SetNoteContent(class UPalNoteData* NoteData, class FText Desc)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (!Func)
|
|
Func = Class->GetFunction("WBP_Option_NoteContent_C", "SetNoteContent");
|
|
|
|
Params::UWBP_Option_NoteContent_C_SetNoteContent_Params Parms{};
|
|
|
|
Parms.NoteData = NoteData;
|
|
Parms.Desc = Desc;
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
|
|
}
|
|
|
|
|
|
// Function WBP_Option_NoteContent.WBP_Option_NoteContent_C.Tick
|
|
// (BlueprintCosmetic, Event, Public, BlueprintEvent)
|
|
// Parameters:
|
|
// struct FGeometry MyGeometry (BlueprintVisible, BlueprintReadOnly, Parm, IsPlainOldData, NoDestructor)
|
|
// float InDeltaTime (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
|
|
void UWBP_Option_NoteContent_C::Tick(const struct FGeometry& MyGeometry, float InDeltaTime)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (!Func)
|
|
Func = Class->GetFunction("WBP_Option_NoteContent_C", "Tick");
|
|
|
|
Params::UWBP_Option_NoteContent_C_Tick_Params Parms{};
|
|
|
|
Parms.MyGeometry = MyGeometry;
|
|
Parms.InDeltaTime = InDeltaTime;
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
|
|
}
|
|
|
|
|
|
// Function WBP_Option_NoteContent.WBP_Option_NoteContent_C.ExecuteUbergraph_WBP_Option_NoteContent
|
|
// (Final, UbergraphFunction, HasDefaults)
|
|
// Parameters:
|
|
// int32 EntryPoint (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// class UPalNoteData* K2Node_CustomEvent_NoteData (ZeroConstructor, NoDestructor, HasGetValueTypeHash)
|
|
// class FText K2Node_CustomEvent_Desc (None)
|
|
// bool CallFunc_IsValidSoftObjectReference_ReturnValue (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// enum class ESlateVisibility Temp_byte_Variable (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// enum class ESlateVisibility Temp_byte_Variable_1 (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// struct FGeometry K2Node_Event_MyGeometry (IsPlainOldData, NoDestructor)
|
|
// float K2Node_Event_InDeltaTime (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// bool Temp_bool_Variable (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// float CallFunc_GetScrollOffsetOfEnd_ReturnValue (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// float CallFunc_GetScrollOffset_ReturnValue (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// enum class ESlateVisibility K2Node_Select_Default (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// double CallFunc_Multiply_DoubleDouble_ReturnValue (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// bool CallFunc_NotEqual_DoubleDouble_ReturnValue (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// double CallFunc_Multiply_DoubleDouble_ReturnValue_1 (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// double CallFunc_Add_DoubleDouble_ReturnValue (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// double CallFunc_FMax_ReturnValue (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// double CallFunc_FMin_ReturnValue (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// double CallFunc_Multiply_DoubleDouble_B_ImplicitCast (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// double CallFunc_FMin_B_ImplicitCast (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// double CallFunc_Add_DoubleDouble_A_ImplicitCast (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
// float CallFunc_SetScrollOffset_NewScrollOffset_ImplicitCast (ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
|
|
|
|
void UWBP_Option_NoteContent_C::ExecuteUbergraph_WBP_Option_NoteContent(int32 EntryPoint, class UPalNoteData* K2Node_CustomEvent_NoteData, class FText K2Node_CustomEvent_Desc, bool CallFunc_IsValidSoftObjectReference_ReturnValue, enum class ESlateVisibility Temp_byte_Variable, enum class ESlateVisibility Temp_byte_Variable_1, const struct FGeometry& K2Node_Event_MyGeometry, float K2Node_Event_InDeltaTime, bool Temp_bool_Variable, float CallFunc_GetScrollOffsetOfEnd_ReturnValue, float CallFunc_GetScrollOffset_ReturnValue, enum class ESlateVisibility K2Node_Select_Default, double CallFunc_Multiply_DoubleDouble_ReturnValue, bool CallFunc_NotEqual_DoubleDouble_ReturnValue, double CallFunc_Multiply_DoubleDouble_ReturnValue_1, double CallFunc_Add_DoubleDouble_ReturnValue, double CallFunc_FMax_ReturnValue, double CallFunc_FMin_ReturnValue, double CallFunc_Multiply_DoubleDouble_B_ImplicitCast, double CallFunc_FMin_B_ImplicitCast, double CallFunc_Add_DoubleDouble_A_ImplicitCast, float CallFunc_SetScrollOffset_NewScrollOffset_ImplicitCast)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (!Func)
|
|
Func = Class->GetFunction("WBP_Option_NoteContent_C", "ExecuteUbergraph_WBP_Option_NoteContent");
|
|
|
|
Params::UWBP_Option_NoteContent_C_ExecuteUbergraph_WBP_Option_NoteContent_Params Parms{};
|
|
|
|
Parms.EntryPoint = EntryPoint;
|
|
Parms.K2Node_CustomEvent_NoteData = K2Node_CustomEvent_NoteData;
|
|
Parms.K2Node_CustomEvent_Desc = K2Node_CustomEvent_Desc;
|
|
Parms.CallFunc_IsValidSoftObjectReference_ReturnValue = CallFunc_IsValidSoftObjectReference_ReturnValue;
|
|
Parms.Temp_byte_Variable = Temp_byte_Variable;
|
|
Parms.Temp_byte_Variable_1 = Temp_byte_Variable_1;
|
|
Parms.K2Node_Event_MyGeometry = K2Node_Event_MyGeometry;
|
|
Parms.K2Node_Event_InDeltaTime = K2Node_Event_InDeltaTime;
|
|
Parms.Temp_bool_Variable = Temp_bool_Variable;
|
|
Parms.CallFunc_GetScrollOffsetOfEnd_ReturnValue = CallFunc_GetScrollOffsetOfEnd_ReturnValue;
|
|
Parms.CallFunc_GetScrollOffset_ReturnValue = CallFunc_GetScrollOffset_ReturnValue;
|
|
Parms.K2Node_Select_Default = K2Node_Select_Default;
|
|
Parms.CallFunc_Multiply_DoubleDouble_ReturnValue = CallFunc_Multiply_DoubleDouble_ReturnValue;
|
|
Parms.CallFunc_NotEqual_DoubleDouble_ReturnValue = CallFunc_NotEqual_DoubleDouble_ReturnValue;
|
|
Parms.CallFunc_Multiply_DoubleDouble_ReturnValue_1 = CallFunc_Multiply_DoubleDouble_ReturnValue_1;
|
|
Parms.CallFunc_Add_DoubleDouble_ReturnValue = CallFunc_Add_DoubleDouble_ReturnValue;
|
|
Parms.CallFunc_FMax_ReturnValue = CallFunc_FMax_ReturnValue;
|
|
Parms.CallFunc_FMin_ReturnValue = CallFunc_FMin_ReturnValue;
|
|
Parms.CallFunc_Multiply_DoubleDouble_B_ImplicitCast = CallFunc_Multiply_DoubleDouble_B_ImplicitCast;
|
|
Parms.CallFunc_FMin_B_ImplicitCast = CallFunc_FMin_B_ImplicitCast;
|
|
Parms.CallFunc_Add_DoubleDouble_A_ImplicitCast = CallFunc_Add_DoubleDouble_A_ImplicitCast;
|
|
Parms.CallFunc_SetScrollOffset_NewScrollOffset_ImplicitCast = CallFunc_SetScrollOffset_NewScrollOffset_ImplicitCast;
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|