mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
* Initial commit * Accidentally included the nukie map changes * Fix the gridcheck * Addressing review * Review change * Review comments
11 lines
417 B
C#
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
|
|
{
|
|
}
|