Add placeholder ghost UI, ghost component

This commit is contained in:
zumorica
2020-03-03 18:04:16 +01:00
parent 6c6ef3911d
commit 6905394e8a
4 changed files with 81 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
using Robust.Shared.GameObjects;
namespace Content.Shared.Observer
{
public class SharedGhostComponent : Component
{
public override string Name => "Ghost";
}
}