mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-19 06:28:40 +03:00
12 lines
151 B
C#
12 lines
151 B
C#
using System;
|
|
|
|
namespace Content.Server.GameObjects
|
|
{
|
|
[Flags]
|
|
public enum VisibilityFlags
|
|
{
|
|
Normal = 1,
|
|
Ghost = 2,
|
|
}
|
|
}
|