mirror of
https://github.com/Ed94/Cog.git
synced 2026-06-13 16:12:23 -07:00
25 lines
604 B
C++
25 lines
604 B
C++
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "CogSampleTargetableInterface.generated.h"
|
|
|
|
class UCapsuleComponent;
|
|
|
|
//--------------------------------------------------------------------------------------------------------------------------
|
|
UINTERFACE(MinimalAPI, Blueprintable)
|
|
class UCogSampleTargetableInterface : public UInterface
|
|
{
|
|
GENERATED_BODY()
|
|
};
|
|
|
|
class ICogSampleTargetableInterface
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
|
|
virtual FVector GetTargetLocation() const { return FVector::ZeroVector; }
|
|
|
|
virtual void GetTargetCapsules(TArray<const UCapsuleComponent*>& Capsules) const { }
|
|
};
|