CapersProject/Assets/02.Scripts/Interface/IDashable.cs

15 lines
380 B
C#
Raw Normal View History

2024-06-03 18:26:03 +00:00
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();
}
}