Files
space-station-14/Content.Shared/Pinpointer/NukeopsStationMapComponent.cs
SlamBamActionman 435b7d5cf8 Add the ability for station maps to track grids they are not on (#41248)
* Initial commit

* Accidentally included the nukie map changes

* Fix the gridcheck

* Addressing review

* Review change

* Review comments
2026-01-12 02:47:47 +00:00

11 lines
417 B
C#

namespace Content.Shared.Pinpointer;
/// <summary>
/// Used to indicate that an entity with the StationMapComponent should be updated to target the TargetStation of NukeopsRuleComponent.
/// Uses the most recent active NukeopsRule when spawned, or the NukeopsRule which spawned the grid that the entity is on.
/// </summary>
[RegisterComponent]
public sealed partial class NukeopsStationMapComponent : Component
{
}