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

89 lines
2.3 KiB
C++

#pragma once
/*
* SDK generated by Dumper-7
*
* https://github.com/Encryqed/Dumper-7
*/
// Package: DailyRewardsSchedule
#include "Basic.hpp"
#include "DailyRewardsSchedule_classes.hpp"
#include "DailyRewardsSchedule_parameters.hpp"
namespace SDK
{
// Function DailyRewardsSchedule.DailyRewardsSchedule_C.ExecuteUbergraph_DailyRewardsSchedule
// (Final, UbergraphFunction, HasDefaults)
// Parameters:
// int32 EntryPoint (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
void UDailyRewardsSchedule_C::ExecuteUbergraph_DailyRewardsSchedule(int32 EntryPoint)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("DailyRewardsSchedule_C", "ExecuteUbergraph_DailyRewardsSchedule");
Params::DailyRewardsSchedule_C_ExecuteUbergraph_DailyRewardsSchedule Parms{};
Parms.EntryPoint = EntryPoint;
UObject::ProcessEvent(Func, &Parms);
}
// Function DailyRewardsSchedule.DailyRewardsSchedule_C.PreConstruct
// (BlueprintCosmetic, Event, Public, BlueprintEvent)
// Parameters:
// bool IsDesignTime (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
void UDailyRewardsSchedule_C::PreConstruct(bool IsDesignTime)
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("DailyRewardsSchedule_C", "PreConstruct");
Params::DailyRewardsSchedule_C_PreConstruct Parms{};
Parms.IsDesignTime = IsDesignTime;
UObject::ProcessEvent(Func, &Parms);
}
// Function DailyRewardsSchedule.DailyRewardsSchedule_C.Construct
// (BlueprintCosmetic, Event, Public, BlueprintEvent)
void UDailyRewardsSchedule_C::Construct()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("DailyRewardsSchedule_C", "Construct");
UObject::ProcessEvent(Func, nullptr);
}
// Function DailyRewardsSchedule.DailyRewardsSchedule_C.Destruct
// (BlueprintCosmetic, Event, Public, BlueprintEvent)
void UDailyRewardsSchedule_C::Destruct()
{
static class UFunction* Func = nullptr;
if (Func == nullptr)
Func = Class->GetFunction("DailyRewardsSchedule_C", "Destruct");
UObject::ProcessEvent(Func, nullptr);
}
}