13 lines
265 B
C#
13 lines
265 B
C#
namespace DDD.Interfaces
|
|
{
|
|
public interface IStunnable
|
|
{
|
|
bool IsStunEnabled { get; }
|
|
bool IsStunned { get; }
|
|
|
|
bool CanStun();
|
|
void Stun(float duration);
|
|
void TryStun(float duration);
|
|
void EndStun();
|
|
}
|
|
} |