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

18 lines
498 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "InstantUsable.h"
#include "PlagueUsable.generated.h"
UCLASS(Blueprintable, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
class UPlagueUsable : public UInstantUsable {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FText CanDropText;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FText CannotDropText;
UPlagueUsable();
};