16번 할 차례, 포스트프로세싱 하이라이팅까지 완료함.

This commit is contained in:
2025-03-04 18:51:09 +09:00
parent 20e7000ae5
commit bca83f6a9c
21 changed files with 237 additions and 13 deletions

View 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;
};