Ghosts now make use of the new "entity visibility" engine functionality

This commit is contained in:
zumorica
2020-04-10 16:28:14 +02:00
parent aff9f18bc8
commit 683644eec5
3 changed files with 24 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
using System;
namespace Content.Server.GameObjects
{
[Flags]
public enum VisibilityFlags
{
None = 0,
Normal = 1,
Ghost = 2,
}
}