qstbak/LLib/LLib.Movement.Unstuck/IRecoveryRung.cs
2026-08-17 20:27:25 +10:00

10 lines
158 B
C#

namespace LLib.Movement.Unstuck;
public interface IRecoveryRung
{
string Name { get; }
long CooldownMs { get; }
bool CanRun(int attempt, long nowMs);
}