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

19 lines
501 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "InstantUsable.h"
#include "BPInstantUsable.generated.h"
class APlayerCharacter;
class USceneComponent;
UCLASS(Blueprintable, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
class FSD_API UBPInstantUsable : public UInstantUsable {
GENERATED_BODY()
public:
UBPInstantUsable();
protected:
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
bool BPCanUse(APlayerCharacter* User, USceneComponent* useCollider) const;
};