Files
tbd-station-14/Content.Client/Pinpointer/UI/NavMapBeaconBoundUserInterface.cs
Nemanja cb0ba66be3 Revert "Remove some BUI boilerplate" (#30214)
Revert "Remove some BUI boilerplate (#28399)"

This reverts commit cbf329a82d.
2024-07-20 20:42:27 -04:00

35 lines
847 B
C#

using Content.Shared.Pinpointer;
using JetBrains.Annotations;
namespace Content.Client.Pinpointer.UI;
[UsedImplicitly]
public sealed class NavMapBeaconBoundUserInterface : BoundUserInterface
{
[ViewVariables]
private NavMapBeaconWindow? _window;
public NavMapBeaconBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey)
{
}
protected override void Open()
{
base.Open();
_window = new NavMapBeaconWindow(Owner);
_window.OpenCentered();
_window.OnClose += Close;
_window.OnApplyButtonPressed += (label, enabled, color) =>
{
SendMessage(new NavMapBeaconConfigureBuiMessage(label, enabled, color));
};
}
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
_window?.Dispose();
}
}