2020-04-10 16:28:14 +02:00
|
|
|
using System;
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Server.Visible
|
2020-04-10 16:28:14 +02:00
|
|
|
{
|
|
|
|
|
[Flags]
|
2021-03-27 17:37:19 -07:00
|
|
|
public enum VisibilityFlags : uint
|
2020-04-10 16:28:14 +02:00
|
|
|
{
|
2021-03-27 17:37:19 -07:00
|
|
|
None = 0,
|
|
|
|
|
Normal = 1 << 0,
|
|
|
|
|
Ghost = 1 << 1,
|
2020-04-10 16:28:14 +02:00
|
|
|
}
|
|
|
|
|
}
|