CapersProject/Assets/02.Scripts/BlueWater/Interface/IStunnable.cs
2025-02-03 19:03:41 +09:00

13 lines
271 B
C#

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