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

20 lines
497 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "ECustomUsableType.h"
#include "CustomUsable.generated.h"
class UUsableComponentBase;
USTRUCT(BlueprintType)
struct FCustomUsable {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
UUsableComponentBase* Usable;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
ECustomUsableType TerminationType;
FSD_API FCustomUsable();
};