Files
tbd-station-14/Content.Client/UserInterface/GhostGui.cs
2020-03-03 19:10:25 +01:00

19 lines
415 B
C#

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"});
}
}
}