From 26dd6f2cdf86b5eac2be77bdcf864a47428fa333 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Wed, 2 Aug 2023 20:39:27 +1000 Subject: [PATCH] Fix merge artifact (#18570) --- Content.Client/Gateway/UI/GatewayBoundUserInterface.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Content.Client/Gateway/UI/GatewayBoundUserInterface.cs b/Content.Client/Gateway/UI/GatewayBoundUserInterface.cs index e3204b7ff2..9478f0ab45 100644 --- a/Content.Client/Gateway/UI/GatewayBoundUserInterface.cs +++ b/Content.Client/Gateway/UI/GatewayBoundUserInterface.cs @@ -1,13 +1,15 @@ using Content.Shared.Gateway; +using JetBrains.Annotations; using Robust.Client.GameObjects; namespace Content.Client.Gateway.UI; +[UsedImplicitly] public sealed class GatewayBoundUserInterface : BoundUserInterface { private GatewayWindow? _window; - public GatewayBoundUserInterface(ClientUserInterfaceComponent owner, Enum uiKey) : base(owner, uiKey) + public GatewayBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { }