
+ IAiView 변경 + INormalAttack 인터페이스 추가 + FieldMinion, InIslandPlayer의 BehaviorTree 인터페이스로 통합 + 행동 트리 Target 검색, 추적 로직 변경
12 lines
275 B
C#
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();
|
|
}
|
|
} |