mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 01:27:13 +02:00
13 lines
208 B
C#
13 lines
208 B
C#
namespace Robust.Client.UserInterface
|
|
{
|
|
public enum AccessLevel
|
|
{
|
|
Public,
|
|
Protected,
|
|
Internal,
|
|
ProtectedInternal,
|
|
Private,
|
|
PrivateProtected,
|
|
}
|
|
}
|