29 lines
687 B
C#
29 lines
687 B
C#
using Content.Client.Computer;
|
|
using Content.Client.UserInterface.Controls;
|
|
using Content.Shared.Shuttles.BUIStates;
|
|
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface.XAML;
|
|
using Robust.Shared.Map;
|
|
|
|
namespace Content.Client.Shuttles.UI;
|
|
|
|
[GenerateTypedNameReferences]
|
|
public sealed partial class RadarConsoleWindow : FancyWindow,
|
|
IComputerWindow<NavInterfaceState>
|
|
{
|
|
public RadarConsoleWindow()
|
|
{
|
|
RobustXamlLoader.Load(this);
|
|
}
|
|
|
|
public void UpdateState(NavInterfaceState scc)
|
|
{
|
|
RadarScreen.UpdateState(scc);
|
|
}
|
|
|
|
public void SetConsole(EntityUid consoleEntity)
|
|
{
|
|
RadarScreen.SetConsole(consoleEntity);
|
|
}
|
|
}
|