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