Delta-v/Content.Server/UserInterface/UserInterfaceHelpers.cs

15 lines
410 B
C#

#nullable enable
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);
}
}
}