13 lines
260 B
C#
13 lines
260 B
C#
|
|
using System.Threading.Tasks;
|
|||
|
|
using Robust.Shared.Network;
|
|||
|
|
|
|||
|
|
namespace Content.Server.Connection.Whitelist.Conditions;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Condition that always matches
|
|||
|
|
/// </summary>
|
|||
|
|
public sealed partial class ConditionAlwaysMatch : WhitelistCondition
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|