15 lines
375 B
C#
15 lines
375 B
C#
|
// ReSharper disable once CheckNamespace
|
||
|
namespace BlueWaterProject
|
||
|
{
|
||
|
public interface IDashable
|
||
|
{
|
||
|
bool EnableDash { get; set; }
|
||
|
bool IsDashing { get; set; }
|
||
|
float DashSpeed { get; set; }
|
||
|
float DashTime { get; set; }
|
||
|
float DashCooldown { get; set; }
|
||
|
void HandleDash();
|
||
|
void EndDash(float dashCooldown);
|
||
|
}
|
||
|
}
|