2025-10-14 22:20:59 -04:00
|
|
|
// Copyright Echo Devgroup
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
|
#include "UObject/Interface.h"
|
|
|
|
|
#include "EnemyInterface.generated.h"
|
|
|
|
|
|
|
|
|
|
// This class does not need to be modified.
|
|
|
|
|
UINTERFACE(MinimalAPI)
|
|
|
|
|
class UEnemyInterface : public UInterface
|
|
|
|
|
{
|
|
|
|
|
GENERATED_BODY()
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
class AURA_API IEnemyInterface
|
|
|
|
|
{
|
2025-10-14 23:45:02 -04:00
|
|
|
GENERATED_BODY()
|
2025-10-14 22:20:59 -04:00
|
|
|
|
|
|
|
|
// Add interface functions to this class. This is the class that will be inherited to implement this interface.
|
|
|
|
|
public:
|
|
|
|
|
|
2025-10-14 23:45:02 -04:00
|
|
|
virtual void HighlightActor() = 0;
|
2025-10-14 22:20:59 -04:00
|
|
|
virtual void UnHighlightActor() = 0;
|
|
|
|
|
|
|
|
|
|
};
|