mirror of
https://github.com/ApfelTeeSaft/Alphanium.git
synced 2026-08-27 11:43:28 +00:00
101 lines
2.8 KiB
C++
101 lines
2.8 KiB
C++
#pragma once
|
|
|
|
/*
|
|
* SDK generated by Dumper-7
|
|
*
|
|
* https://github.com/Encryqed/Dumper-7
|
|
*/
|
|
|
|
// Package: BasicStrokeBox
|
|
|
|
#include "Basic.hpp"
|
|
|
|
#include "BasicStrokeBox_classes.hpp"
|
|
#include "BasicStrokeBox_parameters.hpp"
|
|
|
|
|
|
#pragma pack(push, 0x4)
|
|
namespace SDK
|
|
{
|
|
|
|
// Function BasicStrokeBox.BasicStrokeBox_C.ExecuteUbergraph_BasicStrokeBox
|
|
// ()
|
|
// Parameters:
|
|
// int32 EntryPoint (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
|
|
|
|
void UBasicStrokeBox_C::ExecuteUbergraph_BasicStrokeBox(int32 EntryPoint)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("BasicStrokeBox_C", "ExecuteUbergraph_BasicStrokeBox");
|
|
|
|
Params::BasicStrokeBox_C_ExecuteUbergraph_BasicStrokeBox Parms{};
|
|
|
|
Parms.EntryPoint = EntryPoint;
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
|
|
// Function BasicStrokeBox.BasicStrokeBox_C.PreConstruct
|
|
// (BlueprintCosmetic, Event, Public, BlueprintEvent)
|
|
// Parameters:
|
|
// bool IsDesignTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
|
|
|
|
void UBasicStrokeBox_C::PreConstruct(bool IsDesignTime)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("BasicStrokeBox_C", "PreConstruct");
|
|
|
|
Params::BasicStrokeBox_C_PreConstruct Parms{};
|
|
|
|
Parms.IsDesignTime = IsDesignTime;
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
|
|
// Function BasicStrokeBox.BasicStrokeBox_C.Redraw
|
|
// (Public, BlueprintCallable, BlueprintEvent)
|
|
|
|
void UBasicStrokeBox_C::Redraw()
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("BasicStrokeBox_C", "Redraw");
|
|
|
|
UObject::ProcessEvent(Func, nullptr);
|
|
}
|
|
|
|
|
|
// Function BasicStrokeBox.BasicStrokeBox_C.Customize
|
|
// (Public, BlueprintCallable, BlueprintEvent)
|
|
// Parameters:
|
|
// int32 Shape_Style (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
|
|
// const struct FLinearColor& Fill_Color (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
|
|
// const struct FLinearColor& Stroke_Color (Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
|
|
|
|
void UBasicStrokeBox_C::Customize(int32 Shape_Style, const struct FLinearColor& Fill_Color, const struct FLinearColor& Stroke_Color)
|
|
{
|
|
static class UFunction* Func = nullptr;
|
|
|
|
if (Func == nullptr)
|
|
Func = Class->GetFunction("BasicStrokeBox_C", "Customize");
|
|
|
|
Params::BasicStrokeBox_C_Customize Parms{};
|
|
|
|
Parms.Shape_Style = Shape_Style;
|
|
Parms.Fill_Color = std::move(Fill_Color);
|
|
Parms.Stroke_Color = std::move(Stroke_Color);
|
|
|
|
UObject::ProcessEvent(Func, &Parms);
|
|
}
|
|
|
|
}
|
|
|
|
#pragma pack(pop)
|