namespace BlueWater.Interfaces { public interface IDashable { bool EnableDash { get; } bool IsDashing { get; } bool IsDashCoolDownActive { get; } float DashSpeed { get; } float DashTime { get; } float DashCooldown { get; } bool CanDash(); void HandleEnableDash(); void HandleDisableDash(); } }