mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
10 lines
148 B
C#
10 lines
148 B
C#
namespace Robust.Shared.Network
|
|
{
|
|
public enum AuthMode : byte
|
|
{
|
|
Optional = 0,
|
|
Required = 1,
|
|
Disabled = 2
|
|
}
|
|
}
|