2022-06-26 15:20:45 +10:00
|
|
|
using Content.Client.Computer;
|
|
|
|
|
using Content.Client.Shuttles.UI;
|
|
|
|
|
using Content.Shared.Shuttles.BUIStates;
|
|
|
|
|
using JetBrains.Annotations;
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.Shuttles.BUI;
|
|
|
|
|
|
|
|
|
|
[UsedImplicitly]
|
|
|
|
|
public sealed class EmergencyConsoleBoundUserInterface : ComputerBoundUserInterface<EmergencyConsoleWindow, EmergencyConsoleBoundUserInterfaceState>
|
|
|
|
|
{
|
2023-07-08 09:02:17 -07:00
|
|
|
public EmergencyConsoleBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey)
|
|
|
|
|
{
|
|
|
|
|
}
|
2022-06-26 15:20:45 +10:00
|
|
|
}
|