CapersProject/Assets/02.Scripts/Interface/IDashable.cs
2024-06-04 03:26:03 +09:00

15 lines
380 B
C#

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();
}
}