12 lines
340 B
C#
12 lines
340 B
C#
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;
|
|
}
|