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,18 @@
using Robust.Client.UserInterface;
using Robust.Client.UserInterface.Controls;
using Robust.Shared.IoC;
namespace Content.Client.UserInterface
{
public class GhostGui : Control
{
public GhostGui()
{
IoCManager.InjectDependencies(this);
MouseFilter = MouseFilterMode.Ignore;
AddChild(new Label(){Text = "YES THIS IS GHOST WHOOOOOO"});
}
}
}