CapersProject/Assets/02.Scripts/BlueWater/Interface/IDashable.cs
2025-02-03 19:03:41 +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);
}
}