Payback 0.0.1
CK Graduation Project
로딩중...
검색중...
일치하는것 없음
AttackableInterface.h
이 파일의 문서화 페이지로 가기
1// Fill out your copyright notice in the Description page of Project Settings.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "UObject/Interface.h"
7#include "AttackableInterface.generated.h"
8
9enum class ETargetingMode : uint8;
10// This class does not need to be modified.
11UINTERFACE()
12class UAttackableInterface : public UInterface
13{
14 GENERATED_BODY()
15};
16
20class CK_UE_API IAttackableInterface
21{
22 GENERATED_BODY()
23
24public:
25 virtual void CacheAttackContext() = 0;
27};
ETargetingMode
Definition TargetingComponent.h:18
Definition AttackableInterface.h:21
virtual bool HasTargetingTarget(ETargetingMode)=0
virtual void CacheAttackContext()=0
Definition AttackableInterface.h:13