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

24 lines
706 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "AggregatorVisibilityChangedDelegateDelegate.h"
#include "ItemAggregator.h"
#include "UsableAggregator.generated.h"
UCLASS(Blueprintable, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
class UUsableAggregator : public UItemAggregator {
GENERATED_BODY()
public:
UPROPERTY(BlueprintAssignable, BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FAggregatorVisibilityChangedDelegate OnVisibilityChanged;
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FText UsingText;
public:
UUsableAggregator();
UFUNCTION(BlueprintCallable)
float GetProgress();
};