11 lines
131 B
C#
11 lines
131 B
C#
using System;
|
|
|
|
namespace Content.Server.GameObjects
|
|
{
|
|
[Flags]
|
|
public enum VisibilityFlags
|
|
{
|
|
Ghost = 2,
|
|
}
|
|
}
|