namespace BlueWater.Interfaces { public interface IStunnable { bool IsStunEnabled { get; } bool IsStunned { get; } bool CanStun(); void Stun(float duration); void TryStun(float duration); void EndStun(); } }