This commit is contained in:
Boki 2026-03-06 14:37:05 -05:00
parent 4424f4c3a8
commit 0e7de0a5f3
281 changed files with 3188 additions and 611 deletions

12
src/Nexus.Core/Delays.cs Normal file
View file

@ -0,0 +1,12 @@
namespace Nexus.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;
}