Fix merge artifact (#18570)

This commit is contained in:
metalgearsloth
2023-08-02 20:39:27 +10:00
committed by GitHub
parent dc0e873605
commit 26dd6f2cdf

View File

@@ -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)
{
}