OldBlueWater/BlueWater/Assets/02.Scripts/Interface/IDashable.cs

15 lines
375 B
C#
Raw Normal View History

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