13 lines
339 B
C#
13 lines
339 B
C#
using System.Threading.Tasks;
|
|
using Content.Server.Database;
|
|
using Robust.Shared.Network;
|
|
|
|
namespace Content.Server.Connection.Whitelist.Conditions;
|
|
|
|
/// <summary>
|
|
/// Condition that matches if the player is in the manual whitelist.
|
|
/// </summary>
|
|
public sealed partial class ConditionManualWhitelistMembership : WhitelistCondition
|
|
{
|
|
}
|