Files
UnrealEvent/Aeon-740/SDK/BoostIndicator_functions.cpp
2024-10-18 01:01:36 +01:00

90 lines
2.2 KiB
C++

#pragma once
/*
* SDK generated by Dumper-7
*
* https://github.com/Encryqed/Dumper-7
*/
// Package: BoostIndicator
#include "Basic.hpp"
#include "BoostIndicator_classes.hpp"
#include "BoostIndicator_parameters.hpp"
namespace SDK
{
// Function BoostIndicator.BoostIndicator_C.ExecuteUbergraph_BoostIndicator
// (Final, UbergraphFunction)
// Parameters:
// int32 EntryPoint (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
void UBoostIndicator_C::ExecuteUbergraph_BoostIndicator(int32 EntryPoint)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("BoostIndicator_C", "ExecuteUbergraph_BoostIndicator");
Params::BoostIndicator_C_ExecuteUbergraph_BoostIndicator Parms{};
Parms.EntryPoint = EntryPoint;
UObject::ProcessEvent(Func, &Parms);
}
// Function BoostIndicator.BoostIndicator_C.Construct
// (BlueprintCosmetic, Event, Public, BlueprintEvent)
void UBoostIndicator_C::Construct()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("BoostIndicator_C", "Construct");
UObject::ProcessEvent(Func, nullptr);
}
// Function BoostIndicator.BoostIndicator_C.Update
// (Public, BlueprintCallable, BlueprintEvent)
void UBoostIndicator_C::Update()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("BoostIndicator_C", "Update");
UObject::ProcessEvent(Func, nullptr);
}
// Function BoostIndicator.BoostIndicator_C.IsPartyMemberBoosted
// (Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintEvent)
// Parameters:
// bool Boosted (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor)
void UBoostIndicator_C::IsPartyMemberBoosted(bool* Boosted)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("BoostIndicator_C", "IsPartyMemberBoosted");
Params::BoostIndicator_C_IsPartyMemberBoosted Parms{};
UObject::ProcessEvent(Func, &Parms);
if (Boosted != nullptr)
*Boosted = Parms.Boosted;
}
}