poe2-bot/src/Automata.Core/Delays.cs
2026-02-28 15:13:31 -05:00

12 lines
343 B
C#

namespace Automata.Core;
public static class Delays
{
public const int PostFocus = 300;
public const int PostTravel = 5000;
public const int PostStashOpen = 1000;
public const int ClickInterval = 150;
public const int PostEscape = 500;
public const int PageLoad = 2000;
public const int EmptyRefreshWait = 5000;
}