Files
crystall-punk-14/Content.Client/Shuttles/UI/RadarConsoleWindow.xaml.cs

24 lines
575 B
C#
Raw Permalink Normal View History

using Content.Client.Computer;
using Content.Client.UserInterface.Controls;
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;
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);
}
}