15 lines
454 B
C#
15 lines
454 B
C#
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>
|
|
{
|
|
public EmergencyConsoleBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey)
|
|
{
|
|
}
|
|
}
|