Files
tbd-station-14/Content.Server/UserInterface/UserInterfaceHelpers.cs
2021-07-16 17:37:09 -07:00

14 lines
393 B
C#

using Robust.Server.GameObjects;
using Robust.Shared.GameObjects;
namespace Content.Server.UserInterface
{
public static class UserInterfaceHelpers
{
public static BoundUserInterface? GetUIOrNull(this IEntity entity, object uiKey)
{
return entity.GetComponentOrNull<ServerUserInterfaceComponent>()?.GetBoundUserInterfaceOrNull(uiKey);
}
}
}