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

16 lines
413 B
C#

namespace BlueWater.Interfaces
{
public interface IDashable
{
bool IsDashEnabled { get; }
bool IsDashing { get; }
bool IsDashCoolDownActive { get; }
float DashSpeed { get; }
float DashTime { get; }
float DashCooldown { get; }
bool CanDash();
void Dash();
void EndDash(float dashCooldown = float.PositiveInfinity);
}
}