CapersProject/Assets/02.Scripts/BlueWater/Interface/IStunnable.cs
2025-02-10 11:13:46 +09:00

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();
}
}