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