2024-06-03 18:26:03 +00:00
|
|
|
|
namespace BlueWater.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IStunnable
|
|
|
|
|
{
|
2024-06-16 21:29:06 +00:00
|
|
|
|
bool IsStunEnabled { get; }
|
2024-06-03 18:26:03 +00:00
|
|
|
|
bool IsStunned { get; }
|
2024-06-16 21:29:06 +00:00
|
|
|
|
|
|
|
|
|
bool CanStun();
|
2024-06-03 18:26:03 +00:00
|
|
|
|
void Stun(float duration);
|
|
|
|
|
void EndStun();
|
|
|
|
|
}
|
|
|
|
|
}
|