#pragma once /* * SDK generated by Dumper-7 * * https://github.com/Encryqed/Dumper-7 */ // Package: TooltipDurabilityMeter #include "Basic.hpp" #include "TooltipDurabilityMeter_classes.hpp" #include "TooltipDurabilityMeter_parameters.hpp" #pragma pack(push, 0x4) namespace SDK { // Function TooltipDurabilityMeter.TooltipDurabilityMeter_C.Draw // (Public, HasDefaults, BlueprintCallable, BlueprintEvent) // Parameters: // float Normalized (Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // float Current (Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // float Max (Parm, ZeroConstructor, IsPlainOldData, NoDestructor) void UTooltipDurabilityMeter_C::Draw(float Normalized, float Current, float Max) { static class UFunction* Func = nullptr; if (Func == nullptr) Func = Class->GetFunction("TooltipDurabilityMeter_C", "Draw"); Params::TooltipDurabilityMeter_C_Draw Parms{}; Parms.Normalized = Normalized; Parms.Current = Current; Parms.Max = Max; UObject::ProcessEvent(Func, &Parms); } } #pragma pack(pop)