mirror of
https://github.com/edgegamers/Jailbreak.git
synced 2025-12-06 04:42:57 -08:00
20 lines
317 B
C#
20 lines
317 B
C#
namespace Jailbreak.Teams.Queue;
|
|
|
|
public class QueueState
|
|
{
|
|
|
|
public QueueState()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// The counter value when the player entered the queue
|
|
/// Lower = join CT sooner
|
|
/// </summary>
|
|
public int Position { get; set; }
|
|
|
|
public bool InQueue { get; set; }
|
|
|
|
public bool IsGuard { get; set; }
|
|
}
|