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

18 lines
413 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "UObject/Object.h"
#include "TargetValidator.generated.h"
class AActor;
UCLASS(Abstract, Blueprintable, EditInlineNew)
class UTargetValidator : public UObject {
GENERATED_BODY()
public:
UTargetValidator();
protected:
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
bool ReceiveIsTargetValid(AActor* Owner, AActor* Target) const;
};