CapersProject/Assets/02.Scripts/BlueWater/Interface/IStunnable.cs

13 lines
265 B
C#
Raw Normal View History

2025-02-10 02:13:46 +00:00
namespace DDD.Interfaces
2024-06-03 18:26:03 +00:00
{
public interface IStunnable
{
bool IsStunEnabled { get; }
2024-06-03 18:26:03 +00:00
bool IsStunned { get; }
bool CanStun();
2024-06-03 18:26:03 +00:00
void Stun(float duration);
void TryStun(float duration);
2024-06-03 18:26:03 +00:00
void EndStun();
}
}