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,
|
|
|
|
|
IComputerWindow<RadarConsoleBoundInterfaceState>
|
|
|
|
|
{
|
|
|
|
|
public RadarConsoleWindow()
|
|
|
|
|
{
|
|
|
|
|
RobustXamlLoader.Load(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void UpdateState(RadarConsoleBoundInterfaceState scc)
|
|
|
|
|
{
|
|
|
|
|
RadarScreen.UpdateState(scc);
|
|
|
|
|
}
|
2022-06-23 14:36:47 +10:00
|
|
|
|
|
|
|
|
public void SetMatrix(EntityCoordinates? coordinates, Angle? angle)
|
|
|
|
|
{
|
|
|
|
|
RadarScreen.SetMatrix(coordinates, angle);
|
|
|
|
|
}
|
2022-06-16 15:28:16 +10:00
|
|
|
}
|