OldBlueWater/BlueWater/Assets/02.Scripts/Interface/INormalAttack.cs
NTG_Lenovo e33e979c54 #35 InIslandPlayer 행동 추가
+ IAiView 변경
+ INormalAttack 인터페이스 추가
+ FieldMinion, InIslandPlayer의 BehaviorTree 인터페이스로 통합
+ 행동 트리 Target 검색, 추적 로직 변경
2023-10-16 16:27:29 +09:00

12 lines
275 B
C#

using UnityEngine;
// ReSharper disable once CheckNamespace
namespace BlueWaterProject
{
public interface INormalAttack
{
public void NormalAttack();
public void StopNormalAttackCoroutine();
public bool GetUsedNormalAttackCoroutine();
}
}