16번 할 차례, 포스트프로세싱 하이라이팅까지 완료함.
This commit is contained in:
27
Source/Aura/Public/Interaction/EnemyInterface.h
Normal file
27
Source/Aura/Public/Interaction/EnemyInterface.h
Normal file
@@ -0,0 +1,27 @@
|
||||
// Copyright HappyTanuki
|
||||
|
||||
#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
|
||||
{
|
||||
GENERATED_BODY()
|
||||
|
||||
// Add interface functions to this class. This is the class that will be inherited to implement this interface.
|
||||
public:
|
||||
virtual void HighlightActor() = 0;
|
||||
virtual void UnHighlightActor() = 0;
|
||||
};
|
||||
Reference in New Issue
Block a user