13 lines
169 B
C#
13 lines
169 B
C#
using System;
|
|
|
|
namespace Content.Server.GameObjects
|
|
{
|
|
[Flags]
|
|
public enum VisibilityFlags
|
|
{
|
|
None = 0,
|
|
Normal = 1,
|
|
Ghost = 2,
|
|
}
|
|
}
|