15 lines
380 B
C#
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();
|
|||
|
}
|
|||
|
}
|