Add placeholder ghost UI, ghost component
This commit is contained in:
18
Content.Client/UserInterface/GhostGui.cs
Normal file
18
Content.Client/UserInterface/GhostGui.cs
Normal 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"});
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user