12 lines
233 B
C#
12 lines
233 B
C#
namespace BlueWater.Interfaces
|
|
{
|
|
public interface IStunnable
|
|
{
|
|
bool IsStunEnabled { get; }
|
|
bool IsStunned { get; }
|
|
|
|
bool CanStun();
|
|
void Stun(float duration);
|
|
void EndStun();
|
|
}
|
|
} |