DRG-Femboy-Voice/Source/FSD/Public/PerkHUDIconWidget.h
2025-04-15 12:39:31 -07:00

17 lines
407 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "PerkHUDWidget.h"
#include "PerkHUDIconWidget.generated.h"
UCLASS(Abstract, Blueprintable, EditInlineNew)
class UPerkHUDIconWidget : public UPerkHUDWidget {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
float CoolDownProgress;
public:
UPerkHUDIconWidget();
};