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

21 lines
608 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "SingleUsableComponent.h"
#include "EventRewarderUsableComponent.generated.h"
UCLASS(Blueprintable, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
class UEventRewarderUsableComponent : public USingleUsableComponent {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FText RewardUseText;
public:
UEventRewarderUsableComponent();
protected:
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
FText CreateUseText(int32 blankSchematicCount) const;
};