2022-06-16 15:28:16 +10:00
|
|
|
using Content.Client.Computer;
|
2022-09-11 18:56:21 -07:00
|
|
|
using Content.Client.UserInterface.Controls;
|
2022-06-16 15:28:16 +10:00
|
|
|
using Content.Shared.Shuttles.BUIStates;
|
|
|
|
|
using Robust.Client.AutoGenerated;
|
|
|
|
|
using Robust.Client.UserInterface.XAML;
|
2022-06-23 14:36:47 +10:00
|
|
|
using Robust.Shared.Map;
|
2022-06-16 15:28:16 +10:00
|
|
|
|
|
|
|
|
namespace Content.Client.Shuttles.UI;
|
|
|
|
|
|
|
|
|
|
[GenerateTypedNameReferences]
|
|
|
|
|
public sealed partial class RadarConsoleWindow : FancyWindow,
|
2024-03-03 18:39:19 +11:00
|
|
|
IComputerWindow<NavInterfaceState>
|
2022-06-16 15:28:16 +10:00
|
|
|
{
|
|
|
|
|
public RadarConsoleWindow()
|
|
|
|
|
{
|
|
|
|
|
RobustXamlLoader.Load(this);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-03 18:39:19 +11:00
|
|
|
public void UpdateState(NavInterfaceState scc)
|
2022-06-16 15:28:16 +10:00
|
|
|
{
|
|
|
|
|
RadarScreen.UpdateState(scc);
|
|
|
|
|
}
|
|
|
|
|
}
|