14 lines
347 B
C#
14 lines
347 B
C#
namespace LLib.Movement.Unstuck;
|
|
|
|
public sealed record RecoveryLadderOptions
|
|
{
|
|
public RecoveryMode Mode { get; init; } = RecoveryMode.Conservative;
|
|
|
|
public int AggressiveCap { get; init; } = 10;
|
|
|
|
public int ConservativeCap { get; init; } = 5;
|
|
|
|
public int PassiveCap { get; init; } = 2;
|
|
|
|
public long GlobalCooldownMs { get; init; } = 3000L;
|
|
}
|