[v9] Move GPose check to ClientState (#1378)

This commit is contained in:
KazWolfe 2023-09-17 06:56:49 -07:00 committed by GitHub
parent fb3d4b5b4c
commit 2c23e6fdb3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 15 deletions

View file

@ -73,4 +73,9 @@ public interface IClientState
/// Gets a value indicating whether or not the user is playing PvP, excluding the Wolves' Den.
/// </summary>
public bool IsPvPExcludingDen { get; }
/// <summary>
/// Gets a value indicating whether the client is currently in Group Pose (GPose) mode.
/// </summary>
public bool IsGPosing { get; }
}