CapersProject/Assets/02.Scripts/Interface/IStunnable.cs
Nam Tae Gun 0cdf1aa3a8 전투플레이어 로직 전체 수정
+ 이벤트 구독 방식에서 인터페이스 형식으로 변경
2024-06-17 06:29:06 +09:00

12 lines
233 B
C#

namespace BlueWater.Interfaces
{
public interface IStunnable
{
bool IsStunEnabled { get; }
bool IsStunned { get; }
bool CanStun();
void Stun(float duration);
void EndStun();
}
}