2023-09-11 16:15:23 +10:00
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Eye
|
|
|
|
|
{
|
|
|
|
|
[Flags]
|
|
|
|
|
[FlagsFor(typeof(VisibilityMaskLayer))]
|
|
|
|
|
public enum VisibilityFlags : int
|
|
|
|
|
{
|
|
|
|
|
None = 0,
|
|
|
|
|
Normal = 1 << 0,
|
|
|
|
|
Ghost = 1 << 1,
|
2023-07-16 11:32:42 +03:00
|
|
|
AdminInvisible = 1 << 2,
|
2023-09-11 16:15:23 +10:00
|
|
|
}
|
|
|
|
|
}
|