forked from aly/qstbak
10 lines
158 B
C#
10 lines
158 B
C#
namespace LLib.Movement.Unstuck;
|
|
|
|
public interface IRecoveryRung
|
|
{
|
|
string Name { get; }
|
|
|
|
long CooldownMs { get; }
|
|
|
|
bool CanRun(int attempt, long nowMs);
|
|
}
|