qstbak/LLib/LLib.Movement.Unstuck/RecoveryLadderOptions.cs
2026-08-17 20:29:32 +10:00

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