14 lines
245 B
C#
14 lines
245 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Eye
|
|
{
|
|
[Flags]
|
|
[FlagsFor(typeof(VisibilityMaskLayer))]
|
|
public enum VisibilityFlags : int
|
|
{
|
|
None = 0,
|
|
Normal = 1 << 0,
|
|
Ghost = 1 << 1,
|
|
}
|
|
}
|